Skip to content

Commit aeca020

Browse files
committed
ci: bump actions/cache to v4
1 parent ed3e707 commit aeca020

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/publish-beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: echo "::set-output name=dir::$(yarn cache dir)"
2323

2424
- name: Restore yarn cache
25-
uses: actions/cache@v2
25+
uses: actions/cache@v4
2626
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
2727
with:
2828
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: echo "::set-output name=dir::$(yarn cache dir)"
2323

2424
- name: Restore yarn cache
25-
uses: actions/cache@v2
25+
uses: actions/cache@v4
2626
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
2727
with:
2828
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: echo "::set-output name=dir::$(yarn cache dir)"
2626

2727
- name: Restore yarn cache
28-
uses: actions/cache@v2
28+
uses: actions/cache@v4
2929
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
3030
with:
3131
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: echo "::set-output name=dir::$(yarn cache dir)"
2626

2727
- name: Restore yarn cache
28-
uses: actions/cache@v2
28+
uses: actions/cache@v4
2929
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
3030
with:
3131
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

0 commit comments

Comments
 (0)