Skip to content

Commit 4f64ab9

Browse files
committed
ci: use actions/cache@v3
1 parent 33e4b02 commit 4f64ab9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/setup-node@v3
1717
with:
1818
node-version: ${{ env.NODE_VERSION }}
19-
- uses: actions/cache@v2
19+
- uses: actions/cache@v3
2020
with:
2121
path: '**/node_modules'
2222
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-modules-${{ hashFiles('**/yarn.lock') }}
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
- name: Running lint
3434
uses: actions/checkout@v3
35-
- uses: actions/cache@v2
35+
- uses: actions/cache@v3
3636
with:
3737
path: '**/node_modules'
3838
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-modules-${{ hashFiles('**/yarn.lock') }}
@@ -48,7 +48,7 @@ jobs:
4848
steps:
4949
- name: Running tests
5050
uses: actions/checkout@v3
51-
- uses: actions/cache@v2
51+
- uses: actions/cache@v3
5252
with:
5353
path: '**/node_modules'
5454
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-modules-${{ hashFiles('**/yarn.lock') }}
@@ -68,7 +68,7 @@ jobs:
6868
steps:
6969
- name: Build
7070
uses: actions/checkout@v3
71-
- uses: actions/cache@v2
71+
- uses: actions/cache@v3
7272
with:
7373
path: '**/node_modules'
7474
key: ${{ runner.os }}-${{ env.NODE_VERSION }}-modules-${{ hashFiles('**/yarn.lock') }}

0 commit comments

Comments
 (0)