Skip to content

Commit 5d8d1b5

Browse files
committed
Try fixing runner
1 parent c891a29 commit 5d8d1b5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ jobs:
77
env:
88
GH_PR_NUM: ${{ github.event.number }}
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
- run: |
1212
if [[ ! -z "${GH_PR_NUM}" ]]; then
1313
echo "Checking out PR"
1414
git fetch origin pull/$GH_PR_NUM/head:tmp
1515
git checkout tmp
1616
fi
17-
- uses: actions/cache@v2
17+
- uses: actions/cache@v4
1818
id: setup-cache
1919
name: Cache setup
2020
with:
@@ -33,17 +33,17 @@ jobs:
3333
- uses: actions/setup-node@v1
3434
with:
3535
node-version: '20'
36-
- uses: actions/cache@v2
36+
- uses: actions/cache@v4
3737
id: yarn-cache
3838
name: Cache npm deps
3939
with:
4040
path: |
41-
node_modules
42-
**/node_modules
41+
node_modules
42+
**/node_modules
4343
key: ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
4444
- run: yarn install --frozen-lockfile
4545
if: steps.yarn-cache.outputs.cache-hit != 'true'
46-
- uses: actions/cache@v2
46+
- uses: actions/cache@v4
4747
id: dist
4848
name: Cache dist
4949
with:

0 commit comments

Comments
 (0)