17
17
- uses : actions/setup-node@v3
18
18
with :
19
19
node-version : ' 18'
20
- - uses : actions/cache@v2
20
+ - uses : actions/cache@v4
21
21
id : yarn-cache
22
22
name : Cache npm deps
23
23
with :
27
27
key : ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
28
28
- run : yarn install --frozen-lockfile
29
29
if : steps.yarn-cache.outputs.cache-hit != 'true'
30
- - uses : actions/cache@v2
30
+ - uses : actions/cache@v4
31
31
id : dist
32
32
name : Cache dist
33
33
with :
53
53
- uses : actions/setup-node@v3
54
54
with :
55
55
node-version : ' 16'
56
- - uses : actions/cache@v2
56
+ - uses : actions/cache@v4
57
57
id : yarn-cache
58
58
name : Cache npm deps
59
59
with :
63
63
key : ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
64
64
- run : yarn install --frozen-lockfile
65
65
if : steps.yarn-cache.outputs.cache-hit != 'true'
66
- - uses : actions/cache@v2
66
+ - uses : actions/cache@v4
67
67
id : lint-cache
68
68
name : Load lint cache
69
69
with :
90
90
- uses : actions/setup-node@v3
91
91
with :
92
92
node-version : ' 16'
93
- - uses : actions/cache@v2
93
+ - uses : actions/cache@v4
94
94
id : yarn-cache
95
95
name : Cache npm deps
96
96
with :
@@ -101,7 +101,7 @@ jobs:
101
101
key : ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
102
102
- run : yarn install --frozen-lockfile
103
103
if : steps.yarn-cache.outputs.cache-hit != 'true'
104
- - uses : actions/cache@v2
104
+ - uses : actions/cache@v4
105
105
id : dist
106
106
name : Cache dist
107
107
with :
@@ -131,7 +131,7 @@ jobs:
131
131
- uses : actions/setup-node@v3
132
132
with :
133
133
node-version : ' 16'
134
- - uses : actions/cache@v2
134
+ - uses : actions/cache@v4
135
135
id : yarn-cache
136
136
name : Cache npm deps
137
137
with :
@@ -142,7 +142,7 @@ jobs:
142
142
key : ${{ runner.os }}-yarn-14-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
143
143
- run : yarn install --frozen-lockfile
144
144
if : steps.yarn-cache.outputs.cache-hit != 'true'
145
- - uses : actions/cache@v2
145
+ - uses : actions/cache@v4
146
146
id : dist
147
147
name : Cache dist
148
148
with :
0 commit comments