Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
Update checkout and setup-node GitHub CI actions to v3
Browse files Browse the repository at this point in the history
Fix following warning:
Node.js 12 actions are deprecated. Please update the following actions
to use Node.js 16: actions/checkout@v2, actions/setup-node@v1.
  • Loading branch information
FastAlien committed May 13, 2023
1 parent 92fce68 commit d7906e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
node-version: [ 14.x, 16.x, 18.x, 20.x ]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Node.js ${{matrix.node-version}}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{matrix.node-version}}
- run: npm install
Expand Down

0 comments on commit d7906e4

Please sign in to comment.