@@ -12,16 +12,16 @@ jobs:
12
12
env :
13
13
DIND_HOST : unix:///tmp/docker.sock
14
14
steps :
15
- - uses : actions/checkout@v3
15
+ - uses : actions/checkout@v4
16
16
17
- - uses : actions/setup-node@v3
17
+ - uses : actions/setup-node@v4
18
18
with :
19
19
node-version : 20.11.1
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@v3
24
+ uses : actions/setup-java@v4
25
25
with :
26
26
java-version : 11
27
27
distribution : adopt-hotspot
@@ -70,13 +70,13 @@ jobs:
70
70
71
71
- run : DOCKER_HOST=$DIND_HOST xvfb-run npm run test:integration:release
72
72
73
- - uses : actions/upload-artifact@v3
73
+ - uses : actions/upload-artifact@v4
74
74
with :
75
75
name : distributables
76
76
path : build/dist/*
77
77
if-no-files-found : error
78
78
79
- - uses : actions/upload-artifact@v3
79
+ - uses : actions/upload-artifact@v4
80
80
with :
81
81
name : test-scripts
82
82
path : test/distributables-test
@@ -116,13 +116,13 @@ jobs:
116
116
runs-on : ${{ matrix.os }}
117
117
steps :
118
118
- name : Get our distributables
119
- uses : actions/download-artifact@v3
119
+ uses : actions/download-artifact@v4
120
120
with :
121
121
name : distributables
122
122
path : distributables
123
123
124
124
- name : Get the test scripts
125
- uses : actions/download-artifact@v3
125
+ uses : actions/download-artifact@v4
126
126
with :
127
127
name : test-scripts
128
128
path : .
@@ -143,7 +143,7 @@ jobs:
143
143
- test-distributables
144
144
steps :
145
145
- name : Get our distributables
146
- uses : actions/download-artifact@v3
146
+ uses : actions/download-artifact@v4
147
147
with :
148
148
name : distributables
149
149
path : distributables
0 commit comments