@@ -12,18 +12,19 @@ jobs:
1212 env :
1313 DIND_HOST : unix:///tmp/docker.sock
1414 steps :
15- - uses : actions/checkout@v2
15+ - uses : actions/checkout@v3
1616
17- - uses : actions/setup-node@v1
17+ - uses : actions/setup-node@v3
1818 with :
1919 node-version : 16.18.0
2020
2121 - run : npm install -g npm@^8
2222
2323 - name : Set up JDK 11 for Java testing
24- uses : actions/setup-java@v1
24+ uses : actions/setup-java@v3
2525 with :
2626 java-version : 11
27+ distribution : adopt-hotspot
2728
2829 - run : npm ci
2930 env :
@@ -67,13 +68,13 @@ jobs:
6768
6869 - run : DOCKER_HOST=$DIND_HOST xvfb-run npm run test:release
6970
70- - uses : actions/upload-artifact@v2
71+ - uses : actions/upload-artifact@v3
7172 with :
7273 name : distributables
7374 path : build/dist/*
7475 if-no-files-found : error
7576
76- - uses : actions/upload-artifact@v2
77+ - uses : actions/upload-artifact@v3
7778 with :
7879 name : test-scripts
7980 path : test/distributables-test
@@ -110,13 +111,13 @@ jobs:
110111 runs-on : ${{ matrix.os }}
111112 steps :
112113 - name : Get our distributables
113- uses : actions/download-artifact@v2
114+ uses : actions/download-artifact@v3
114115 with :
115116 name : distributables
116117 path : distributables
117118
118119 - name : Get the test scripts
119- uses : actions/download-artifact@v2
120+ uses : actions/download-artifact@v3
120121 with :
121122 name : test-scripts
122123 path : .
0 commit comments