Skip to content

Commit 6ab1ee0

Browse files
committed
ci: update CI steps to use node 20
1 parent b369f49 commit 6ab1ee0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
-
10-
uses: actions/checkout@v3
10+
uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0 # Fetch all history
1313
-
14-
uses: actions/setup-node@v3
14+
uses: actions/setup-node@v4
1515
with:
1616
node-version-file: '.nvmrc'
1717
- run: npm i -g npm@10.5.0
@@ -25,10 +25,10 @@ jobs:
2525
matrix:
2626
node-version: [ 16, 20, 'lts/*', 'latest' ]
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
-
3030
name: Use Node.js ${{ matrix.node-version }}
31-
uses: actions/setup-node@v3
31+
uses: actions/setup-node@v4
3232
with:
3333
node-version: ${{ matrix.node-version }}
3434
- run: npm i -g npm@10.5.0

0 commit comments

Comments
 (0)