Skip to content

Commit fb3827b

Browse files
authored
Update workflow action cache version (#110)
1 parent 5137441 commit fb3827b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/demo-app.yml

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

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

.github/workflows/docs-website.yml

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

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

.github/workflows/run-tests.yml

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

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

0 commit comments

Comments
 (0)