Skip to content

Commit e176963

Browse files
committed
Update CI steps to Node v20
1 parent 4b40c0f commit e176963

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ jobs:
1212
env:
1313
DIND_HOST: unix:///tmp/docker.sock
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616

17-
- uses: actions/setup-node@v3
17+
- uses: actions/setup-node@v4
1818
with:
1919
node-version: 20.11.1
2020

2121
- run: npm install -g npm@^8
2222

2323
- name: Set up JDK 11 for Java testing
24-
uses: actions/setup-java@v3
24+
uses: actions/setup-java@v4
2525
with:
2626
java-version: 11
2727
distribution: adopt-hotspot
@@ -70,13 +70,13 @@ jobs:
7070

7171
- run: DOCKER_HOST=$DIND_HOST xvfb-run npm run test:integration:release
7272

73-
- uses: actions/upload-artifact@v3
73+
- uses: actions/upload-artifact@v4
7474
with:
7575
name: distributables
7676
path: build/dist/*
7777
if-no-files-found: error
7878

79-
- uses: actions/upload-artifact@v3
79+
- uses: actions/upload-artifact@v4
8080
with:
8181
name: test-scripts
8282
path: test/distributables-test
@@ -116,13 +116,13 @@ jobs:
116116
runs-on: ${{ matrix.os }}
117117
steps:
118118
- name: Get our distributables
119-
uses: actions/download-artifact@v3
119+
uses: actions/download-artifact@v4
120120
with:
121121
name: distributables
122122
path: distributables
123123

124124
- name: Get the test scripts
125-
uses: actions/download-artifact@v3
125+
uses: actions/download-artifact@v4
126126
with:
127127
name: test-scripts
128128
path: .
@@ -143,7 +143,7 @@ jobs:
143143
- test-distributables
144144
steps:
145145
- name: Get our distributables
146-
uses: actions/download-artifact@v3
146+
uses: actions/download-artifact@v4
147147
with:
148148
name: distributables
149149
path: distributables

0 commit comments

Comments
 (0)