Skip to content

Commit ef2958f

Browse files
chore(deps): ⬆️ update actions/cache action to v3 (#332)
Co-authored-by: Renovate Bot <[email protected]>
1 parent 58ce978 commit ef2958f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
id: yarn-cache-dir-path
2020
run: echo "::set-output name=dir::$(yarn cache dir)"
2121

22-
- uses: actions/cache@v2
22+
- uses: actions/cache@v3
2323
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
2424
with:
2525
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
id: yarn-cache-dir-path
2020
run: echo "::set-output name=dir::$(yarn cache dir)"
2121

22-
- uses: actions/cache@v2
22+
- uses: actions/cache@v3
2323
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
2424
with:
2525
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/test.yml

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

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

0 commit comments

Comments
 (0)