@@ -11,12 +11,12 @@ jobs:
11
11
lint :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/checkout@v1
14
+ - uses : actions/checkout@v4
15
15
- uses : volta-cli/action@v1
16
16
- name : Get yarn cache directory path
17
17
id : yarn-cache-dir-path
18
18
run : echo "::set-output name=dir::$(yarn config get cacheFolder)"
19
- - uses : actions/cache@v2
19
+ - uses : actions/cache@v4
20
20
id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
21
21
with :
22
22
path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -30,12 +30,12 @@ jobs:
30
30
test :
31
31
runs-on : ubuntu-latest
32
32
steps :
33
- - uses : actions/checkout@v1
33
+ - uses : actions/checkout@v4
34
34
- uses : volta-cli/action@v1
35
35
- name : Get yarn cache directory path
36
36
id : yarn-cache-dir-path
37
37
run : echo "::set-output name=dir::$(yarn config get cacheFolder)"
38
- - uses : actions/cache@v2
38
+ - uses : actions/cache@v4
39
39
id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
40
40
with :
41
41
path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -49,12 +49,12 @@ jobs:
49
49
snapshot :
50
50
runs-on : ubuntu-latest
51
51
steps :
52
- - uses : actions/checkout@v1
52
+ - uses : actions/checkout@v4
53
53
- uses : volta-cli/action@v1
54
54
- name : Get yarn cache directory path
55
55
id : yarn-cache-dir-path
56
56
run : echo "::set-output name=dir::$(yarn config get cacheFolder)"
57
- - uses : actions/cache@v2
57
+ - uses : actions/cache@v4
58
58
id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
59
59
with :
60
60
path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
0 commit comments