Skip to content

Commit 467f920

Browse files
committedJan 31, 2024
Fix workflows
1 parent bcd6b3b commit 467f920

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ jobs:
1717
name: Run test & lint
1818
runs-on: Ubuntu-20.04
1919
steps:
20-
- uses: actions/checkout@v2
21-
- uses: actions/setup-node@v2
20+
- uses: actions/checkout@v4
21+
- uses: actions/setup-node@v4
2222
with:
23-
node-version: '16.x'
24-
- uses: actions/cache@v2
23+
node-version: '18.x'
24+
- uses: actions/cache@v4
2525
id: yarn-cache
2626
with:
2727
path: |
2828
node_modules
2929
*/*/node_modules
30-
key: ${{ runner.os }}-install-${{ hashFiles('**/yarn.lock') }}
30+
key: node18-${{ runner.os }}-install-${{ hashFiles('**/yarn.lock') }}
3131
- run: yarn install
3232
if: ${{ steps.yarn-cache.outputs.cache-hit != 'true' }}
3333

0 commit comments

Comments
 (0)
Failed to load comments.