Skip to content

Commit c9604a3

Browse files
committed
chore(deps): update actions/cache action to v2
1 parent b6478c4 commit c9604a3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
id: yarn-cache
2828
run: echo "::set-output name=dir::$(yarn cache dir)"
2929
- name: Cache Yarn
30-
uses: actions/cache@v1
30+
uses: actions/cache@v2
3131
with:
3232
path: ${{ steps.yarn-cache.outputs.dir }}
3333
key: ${{ runner.os }}-${{matrix.node_version}}-yarn-${{ hashFiles('yarn.lock') }}
3434
restore-keys: |
3535
${{ runner.os }}-${{matrix.node_version}}-yarn-
3636
- name: Cache Jest
37-
uses: actions/cache@v1
37+
uses: actions/cache@v2
3838
with:
3939
path: .cache/jest
4040
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
@@ -32,7 +32,7 @@ jobs:
3232
id: yarn-cache
3333
run: echo "::set-output name=dir::$(yarn cache dir)"
3434
- name: Cache Yarn
35-
uses: actions/cache@v1
35+
uses: actions/cache@v2
3636
with:
3737
path: ${{ steps.yarn-cache.outputs.dir }}
3838
key: ${{ runner.os }}-14-15-yarn-${{ hashFiles('yarn.lock') }}

0 commit comments

Comments
 (0)