Skip to content

Commit

Permalink
Fix warning on cicd workflow
Browse files Browse the repository at this point in the history
Node.js 16 actions are deprecated. Please update the following
actions to use Node.js 20: actions/checkout@v3,
aws-actions/configure-aws-credentials@v1-node16. For more infor-
mation see:

https://github.blog/changelog/
2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
  • Loading branch information
wlsf82 committed Feb 11, 2024
1 parent 27d7ae6 commit 018c68e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1-node16
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down

0 comments on commit 018c68e

Please sign in to comment.