Skip to content

Commit

Permalink
fix(workflows): switch CI workflow to node v20
Browse files Browse the repository at this point in the history
Github has removed node14 from the runners and deprecated node16 since
it's past its end of life[1]. Workflows containing actions using old
node versions emit deprecation warnings. This commit removes the warning
by switching to latest stable versions of the affected actions.

[1]: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
  • Loading branch information
koushik-ms committed May 4, 2024
1 parent ce7a9a4 commit d26d8b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Expand Up @@ -12,8 +12,8 @@ jobs:
node-version:
- 14
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down

0 comments on commit d26d8b5

Please sign in to comment.