@@ -25,19 +25,20 @@ jobs:
25
25
- name : Setup node
26
26
uses : actions/setup-node@v2-beta
27
27
with :
28
- node-version : ' 14'
28
+ node-version : ' 16'
29
+ check-latest : true
29
30
- name : node_modules cache
30
31
uses : actions/cache@v2
31
32
id : node_modules_cache
32
33
with :
33
34
path : ./node_modules
34
- key : ${{ runner.os }}-14 -12-9-9-6-node_modules-${{ hashFiles('yarn.lock') }}
35
+ key : ${{ runner.os }}-16 -12-9-9-6-node_modules-${{ hashFiles('yarn.lock') }}
35
36
restore-keys : |
36
- ${{ runner.os }}-14 -12-9-9-6-node_modules-
37
- ${{ runner.os }}-14 -12-9-9-
38
- ${{ runner.os }}-14 -12-9-
39
- ${{ runner.os }}-14 -12-
40
- ${{ runner.os }}-14 -
37
+ ${{ runner.os }}-16 -12-9-9-6-node_modules-
38
+ ${{ runner.os }}-16 -12-9-9-
39
+ ${{ runner.os }}-16 -12-9-
40
+ ${{ runner.os }}-16 -12-
41
+ ${{ runner.os }}-16 -
41
42
- name : Yarn offline cache
42
43
if : steps.node_modules_cache.outputs.cache-hit != 'true'
43
44
uses : actions/cache@v2
@@ -236,11 +237,11 @@ jobs:
236
237
strategy :
237
238
matrix :
238
239
os : [ ubuntu-latest, macos-latest, windows-latest ]
239
- node : ["14 "]
240
+ node : ["16 "]
240
241
exclude :
241
242
# we build with this combination, safely skip
242
243
- os : ubuntu-latest
243
- node : 14
244
+ node : 16
244
245
fail-fast : false
245
246
steps :
246
247
- name : Checkout
@@ -250,13 +251,6 @@ jobs:
250
251
with :
251
252
node-version : ${{ matrix.node }}
252
253
check-latest : true
253
- # node 14 image doesn't have new enough java for the emulators
254
- - name : Setup java
255
- uses : actions/setup-java@v3
256
- with :
257
- distribution : ' temurin'
258
- java-version : ' 11'
259
- if : matrix.node == '14'
260
254
- name : node_modules cache
261
255
uses : actions/cache@v2
262
256
id : node_modules_cache
@@ -310,8 +304,9 @@ jobs:
310
304
- name : Setup node
311
305
uses : actions/setup-node@v2-beta
312
306
with :
313
- node-version : ' 14 '
307
+ node-version : ' 16 '
314
308
registry-url : ' https://registry.npmjs.org'
309
+ check-latest : true
315
310
- name : ' Download Artifacts'
316
311
uses : actions/download-artifact@v2
317
312
- name : Publish
0 commit comments