Skip to content

Commit

Permalink
Update GitHub actions to versions that use node20 as default runtime
Browse files Browse the repository at this point in the history
CodeQL Actions are yet to release v3, which will run on `node20`
github/codeql-action#1959
  • Loading branch information
Pl217 committed Nov 1, 2023
1 parent 4a51180 commit 5f65bb0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -11,8 +11,8 @@ jobs:
timeout-minutes: 25
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-node@v3
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install packages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Expand Up @@ -35,9 +35,9 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '20'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yml
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '20'

Expand All @@ -23,7 +23,7 @@ jobs:

- name: Login to Public ECR
if: ${{ github.actor != 'dependabot[bot]' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: public.ecr.aws
username: ${{ secrets.HPC_ECR_AWS_ACCESS_KEY_ID }}
Expand Down

0 comments on commit 5f65bb0

Please sign in to comment.