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 Oct 26, 2023
1 parent dd23602 commit 5223eee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Expand Up @@ -39,9 +39,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
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Expand Up @@ -8,22 +8,22 @@ 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'

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.HPC_ECR_AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.HPC_ECR_AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1

- 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 5223eee

Please sign in to comment.