@@ -12,18 +12,19 @@ jobs:
12
12
env :
13
13
DIND_HOST : unix:///tmp/docker.sock
14
14
steps :
15
- - uses : actions/checkout@v2
15
+ - uses : actions/checkout@v3
16
16
17
- - uses : actions/setup-node@v1
17
+ - uses : actions/setup-node@v3
18
18
with :
19
19
node-version : 16.18.0
20
20
21
21
- run : npm install -g npm@^8
22
22
23
23
- name : Set up JDK 11 for Java testing
24
- uses : actions/setup-java@v1
24
+ uses : actions/setup-java@v3
25
25
with :
26
26
java-version : 11
27
+ distribution : adopt-hotspot
27
28
28
29
- run : npm ci
29
30
env :
@@ -67,13 +68,13 @@ jobs:
67
68
68
69
- run : DOCKER_HOST=$DIND_HOST xvfb-run npm run test:release
69
70
70
- - uses : actions/upload-artifact@v2
71
+ - uses : actions/upload-artifact@v3
71
72
with :
72
73
name : distributables
73
74
path : build/dist/*
74
75
if-no-files-found : error
75
76
76
- - uses : actions/upload-artifact@v2
77
+ - uses : actions/upload-artifact@v3
77
78
with :
78
79
name : test-scripts
79
80
path : test/distributables-test
@@ -110,13 +111,13 @@ jobs:
110
111
runs-on : ${{ matrix.os }}
111
112
steps :
112
113
- name : Get our distributables
113
- uses : actions/download-artifact@v2
114
+ uses : actions/download-artifact@v3
114
115
with :
115
116
name : distributables
116
117
path : distributables
117
118
118
119
- name : Get the test scripts
119
- uses : actions/download-artifact@v2
120
+ uses : actions/download-artifact@v3
120
121
with :
121
122
name : test-scripts
122
123
path : .
0 commit comments