1515 runs-on : ubuntu-latest
1616 steps :
1717 - name : Checkout code
18- uses : actions/checkout@v2
18+ uses : actions/checkout@v4
1919
2020 - name : Setup node
2121 uses : actions/setup-node@v3
2424 cache : yarn
2525
2626 - name : Cache yarn.lock
27- uses : actions/cache@v2
27+ uses : actions/cache@v4
2828 with :
2929 path : package-temp-dir
3030 key : lock-${{ github.sha }}
4040 cp yarn.lock package-temp-dir
4141 - name : Cache node_modules
4242 id : node_modules_cache_id
43- uses : actions/cache@v2
43+ uses : actions/cache@v4
4444 with :
4545 path : node_modules
4646 key : node_modules-${{ hashFiles('**/package.json') }}-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
@@ -53,16 +53,16 @@ jobs:
5353 needs : [setup]
5454 runs-on : ubuntu-latest
5555 steps :
56- - uses : actions/checkout@v2
56+ - uses : actions/checkout@v4
5757
5858 - name : Restore cache from yarn.lock
59- uses : actions/cache@v2
59+ uses : actions/cache@v4
6060 with :
6161 path : package-temp-dir
6262 key : lock-${{ github.sha }}
6363
6464 - name : Restore cache from node_modules
65- uses : actions/cache@v2
65+ uses : actions/cache@v4
6666 with :
6767 path : node_modules
6868 key : node_modules-${{ hashFiles('**/package.json') }}-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
@@ -74,16 +74,16 @@ jobs:
7474 needs : [setup]
7575 runs-on : ubuntu-latest
7676 steps :
77- - uses : actions/checkout@v2
77+ - uses : actions/checkout@v4
7878
7979 - name : Restore cache from yarn.lock
80- uses : actions/cache@v2
80+ uses : actions/cache@v4
8181 with :
8282 path : package-temp-dir
8383 key : lock-${{ github.sha }}
8484
8585 - name : Restore cache from node_modules
86- uses : actions/cache@v2
86+ uses : actions/cache@v4
8787 with :
8888 path : node_modules
8989 key : node_modules-${{ hashFiles('**/package.json') }}-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
@@ -95,16 +95,16 @@ jobs:
9595 needs : [setup]
9696 runs-on : ubuntu-latest
9797 steps :
98- - uses : actions/checkout@v2
98+ - uses : actions/checkout@v4
9999
100100 - name : Restore cache from yarn.lock
101- uses : actions/cache@v2
101+ uses : actions/cache@v4
102102 with :
103103 path : package-temp-dir
104104 key : lock-${{ github.sha }}
105105
106106 - name : Restore cache from node_modules
107- uses : actions/cache@v2
107+ uses : actions/cache@v4
108108 with :
109109 path : node_modules
110110 key : node_modules-${{ hashFiles('**/package.json') }}-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
@@ -116,16 +116,16 @@ jobs:
116116 needs : [setup]
117117 runs-on : ubuntu-latest
118118 steps :
119- - uses : actions/checkout@v2
119+ - uses : actions/checkout@v4
120120
121121 - name : Restore cache from yarn.lock
122- uses : actions/cache@v2
122+ uses : actions/cache@v4
123123 with :
124124 path : package-temp-dir
125125 key : lock-${{ github.sha }}
126126
127127 - name : Restore cache from node_modules
128- uses : actions/cache@v2
128+ uses : actions/cache@v4
129129 with :
130130 path : node_modules
131131 key : node_modules-${{ hashFiles('**/package.json') }}-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
@@ -137,16 +137,16 @@ jobs:
137137 runs-on : ubuntu-latest
138138 needs : [setup]
139139 steps :
140- - uses : actions/checkout@v2
140+ - uses : actions/checkout@v4
141141
142142 - name : Restore cache from yarn.lock
143- uses : actions/cache@v2
143+ uses : actions/cache@v4
144144 with :
145145 path : package-temp-dir
146146 key : lock-${{ github.sha }}
147147
148148 - name : Restore cache from node_modules
149- uses : actions/cache@v2
149+ uses : actions/cache@v4
150150 with :
151151 path : node_modules
152152 key : node_modules-${{ hashFiles('**/package.json') }}-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
0 commit comments