Skip to content

Commit

Permalink
Bump actions/checkout from v3 to v4 (#26)
Browse files Browse the repository at this point in the history
Fixes a node deprecation warning from GH
  • Loading branch information
graveland authored Feb 13, 2024
1 parent 4755a82 commit c864647
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: non-prod
steps:
- name: Setup | Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.API_TOKEN_GITHUB }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
steps:

- name: Setup | Checkout submodules
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.API_TOKEN_GITHUB }}
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
steps:

- name: Setup | Checkout submodules
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.API_TOKEN_GITHUB }}
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
steps:

- name: Setup | Checkout submodules
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.API_TOKEN_GITHUB }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
steps:

- name: Setup | Checkout submodules
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get modified files
id: files
uses: jitterbit/get-changed-files@v1
continue-on-error: true

- uses: reviewdog/action-actionlint@v1
with:
with:
actionlint_flags: --ignore SC2086 --config-file .github/actionlint.yaml
fail_on_error: true
level: error

2 changes: 1 addition & 1 deletion build-push/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ runs:
aws ecr get-login-password --region ${{ inputs.region }} | docker login \
--username AWS --password-stdin ${{ inputs.registry }}
shell: bash

- name: Docker Deps
run: |
docker build -t ${{ inputs.registry }}:deps -f ${{ inputs.file }} .
Expand Down

0 comments on commit c864647

Please sign in to comment.