Skip to content

Commit c7fc6f6

Browse files
Update actions/cache action to v2 (#189)
Co-authored-by: Renovate Bot <[email protected]>
1 parent 7d75f61 commit c7fc6f6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/canary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
id: yarn-cache
3131
run: echo "::set-output name=dir::$(yarn cache dir)"
3232
- name: Cache Yarn
33-
uses: actions/cache@v1
33+
uses: actions/cache@v2
3434
with:
3535
path: ${{ steps.yarn-cache.outputs.dir }}
3636
key: ${{ runner.os }}-14-yarn-${{ hashFiles('yarn.lock') }}

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
id: yarn-cache
2929
run: echo "::set-output name=dir::$(yarn cache dir)"
3030
- name: Cache Yarn
31-
uses: actions/cache@v1
31+
uses: actions/cache@v2
3232
with:
3333
path: ${{ steps.yarn-cache.outputs.dir }}
3434
key: ${{ runner.os }}-${{matrix.node_version}}-yarn-${{ hashFiles('yarn.lock') }}
3535
restore-keys: |
3636
${{ runner.os }}-${{matrix.node_version}}-yarn-
3737
- name: Cache Jest
38-
uses: actions/cache@v1
38+
uses: actions/cache@v2
3939
with:
4040
path: .cache/jest
4141
key: ${{ runner.os }}-${{matrix.node_version}}-jest-${{ hashFiles('yarn.lock') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
id: yarn-cache
3434
run: echo "::set-output name=dir::$(yarn cache dir)"
3535
- name: Cache Yarn
36-
uses: actions/cache@v1
36+
uses: actions/cache@v2
3737
with:
3838
path: ${{ steps.yarn-cache.outputs.dir }}
3939
key: ${{ runner.os }}-14-15-yarn-${{ hashFiles('yarn.lock') }}

0 commit comments

Comments
 (0)