Skip to content

Commit 209f6d0

Browse files
authored
chore: use actions/cache@v2 in all workflows (#3346)
1 parent 0e5cd96 commit 209f6d0

File tree

3 files changed

+7
-72
lines changed

3 files changed

+7
-72
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
id: yarn-cache-dir-path
3333
run: echo "::set-output name=dir::$(yarn cache dir)"
3434

35-
- uses: actions/cache@v1
35+
- uses: actions/cache@v2
3636
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
3737
with:
3838
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -74,7 +74,7 @@ jobs:
7474
id: yarn-cache-dir-path
7575
run: echo "::set-output name=dir::$(yarn cache dir)"
7676

77-
- uses: actions/cache@v1
77+
- uses: actions/cache@v2
7878
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
7979
with:
8080
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -160,7 +160,7 @@ jobs:
160160
id: yarn-cache-dir-path
161161
run: echo "::set-output name=dir::$(yarn cache dir)"
162162

163-
- uses: actions/cache@v1
163+
- uses: actions/cache@v2
164164
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
165165
with:
166166
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -203,7 +203,7 @@ jobs:
203203
id: yarn-cache-dir-path
204204
run: echo "::set-output name=dir::$(yarn cache dir)"
205205

206-
- uses: actions/cache@v1
206+
- uses: actions/cache@v2
207207
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
208208
with:
209209
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -242,7 +242,7 @@ jobs:
242242
id: yarn-cache-dir-path
243243
run: echo "::set-output name=dir::$(yarn cache dir)"
244244

245-
- uses: actions/cache@v1
245+
- uses: actions/cache@v2
246246
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
247247
with:
248248
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -324,7 +324,7 @@ jobs:
324324
id: yarn-cache-dir-path
325325
run: echo "::set-output name=dir::$(yarn cache dir)"
326326

327-
- uses: actions/cache@v1
327+
- uses: actions/cache@v2
328328
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
329329
with:
330330
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/generate-contributors.yml

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

25-
- uses: actions/cache@v1
25+
- uses: actions/cache@v2
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/manual-release.yml

Lines changed: 0 additions & 65 deletions
This file was deleted.

0 commit comments

Comments
 (0)