Skip to content

Commit 1904fcb

Browse files
committed
chore: fix cache version
1 parent 1cfa99f commit 1904fcb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
cache: 'yarn'
2525
- name: cache all node_modules
2626
id: cache-modules
27-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
27+
uses: actions/cache@v4 # v4
2828
with:
2929
path: '**/node_modules'
3030
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock', '**/package.json') }}
@@ -33,7 +33,7 @@ jobs:
3333
if: steps.cache-modules.outputs.cache-hit != 'true'
3434
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
3535
- name: cache global yarn cache
36-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
36+
uses: actions/cache@v4 # v4
3737
if: steps.cache-modules.outputs.cache-hit != 'true'
3838
with:
3939
path: ${{ steps.yarn-cache.outputs.dir }}

0 commit comments

Comments
 (0)