Skip to content

Commit 7b10671

Browse files
chore(deps): update actions/cache action to v3 (#1001)
Co-authored-by: Renovate Bot <[email protected]>
1 parent 657631e commit 7b10671

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/canary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
env:
3030
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
3131
- name: Cache Yarn
32-
uses: actions/cache@v2
32+
uses: actions/cache@v3
3333
with:
3434
path: '**/node_modules'
3535
key: ${{ runner.os }}-16-8-16-node-modules-${{ 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
env:
3333
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
3434
- name: Cache Yarn
35-
uses: actions/cache@v2
35+
uses: actions/cache@v3
3636
with:
3737
path: '**/node_modules'
3838
key: ${{ runner.os }}-16-8-16-node-modules-${{ hashFiles('yarn.lock') }}

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
node-version: 16
2424
- name: Cache Yarn
25-
uses: actions/cache@v2
25+
uses: actions/cache@v3
2626
with:
2727
path: '**/node_modules'
2828
key: ${{ runner.os }}-16-8-16-node-modules-${{ hashFiles('yarn.lock') }}
@@ -52,7 +52,7 @@ jobs:
5252
with:
5353
node-version: 16
5454
- name: Cache Yarn
55-
uses: actions/cache@v2
55+
uses: actions/cache@v3
5656
with:
5757
path: '**/node_modules'
5858
key: ${{runner.os}}-16-8-${{matrix.graphql_version}}-node-modules-${{hashFiles('yarn.lock')}}
@@ -94,7 +94,7 @@ jobs:
9494
with:
9595
node-version: ${{ matrix.node_version }}
9696
- name: Cache Yarn
97-
uses: actions/cache@v2
97+
uses: actions/cache@v3
9898
with:
9999
path: '**/node_modules'
100100
key: ${{runner.os}}-${{matrix.node_version}}-${{matrix.eslint_version}}-${{matrix.graphql_version}}-node-modules-${{hashFiles('yarn.lock')}}
@@ -108,7 +108,7 @@ jobs:
108108
- name: Install Dependencies using Yarn
109109
run: yarn install && git checkout yarn.lock
110110
- name: Cache Jest
111-
uses: actions/cache@v2
111+
uses: actions/cache@v3
112112
with:
113113
path: .cache/jest
114114
key: ${{runner.os}}-${{matrix.node_version}}-${{matrix.eslint_version}}-jest-${{hashFiles('yarn.lock')}}

0 commit comments

Comments
 (0)