Skip to content

Commit 28fc0c4

Browse files
committed
chore: upgrade to actions/cache v4
1 parent e78ec82 commit 28fc0c4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-canary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
registry-url: 'https://registry.npmjs.org'
2828

2929
- name: Restore/create node_modules cache
30-
uses: actions/cache@v2
30+
uses: actions/cache@v4
3131
with:
3232
path: '**/node_modules'
3333
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

.github/workflows/build-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
registry-url: 'https://registry.npmjs.org'
2727

2828
- name: Restore/create node_modules cache
29-
uses: actions/cache@v2
29+
uses: actions/cache@v4
3030
with:
3131
path: '**/node_modules'
3232
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

.github/workflows/build-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
github-token: ${{ secrets.API_TOKEN_GITHUB }}
6969

7070
- name: Restore/create node_modules cache
71-
uses: actions/cache@v2
71+
uses: @v2
7272
with:
7373
path: '**/node_modules'
7474
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

0 commit comments

Comments
 (0)