Skip to content

Commit 80770d5

Browse files
authored
chore(ci): update node version
1 parent afbb804 commit 80770d5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/node.js.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions/cache@v2
15+
- uses: actions/checkout@v4
16+
- uses: actions/cache@v4
1717
id: cache-node
1818
with:
1919
path: node_modules
2020
key: ${{ hashFiles('package.json') }}
21-
- uses: actions/setup-node@v1
21+
- run: corepack enable
22+
- uses: actions/setup-node@v4
2223
with:
23-
node-version: 16.x
24+
node-version: 20
2425
- run: yarn install
2526
if: steps.cache-node.outputs.cache-hit != 'true'
2627
- run: yarn lint

0 commit comments

Comments
 (0)