5555 container : viperproject/viperserver:v4_z3_4.8.7
5656 steps :
5757 - name : Checkout ViperServer
58- uses : actions/checkout@v4
58+ uses : actions/checkout@v6
5959 with :
6060 path : viperserver
6161 submodules : recursive
8787 echo "Silver: commit ${{ env.SILICON_SILVER_REF }}" >> versions.txt
8888 # first line overwrites versions.txt in case it already exists, all other append to the file
8989 - name : Upload version file
90- uses : actions/upload-artifact@v4
90+ uses : actions/upload-artifact@v6
9191 with :
9292 name : versions.txt
9393 path : versions.txt
9797 # note that the cache path is relative to the directory in which sbt is invoked.
9898
9999 - name : Cache SBT
100- uses : actions/cache@v4
100+ uses : actions/cache@v5
101101 with :
102102 path : |
103103 viperserver/sbt-cache/.sbtboot
@@ -115,7 +115,7 @@ jobs:
115115
116116 - name : Upload log files
117117 if : ${{ failure() }}
118- uses : actions/upload-artifact@v4
118+ uses : actions/upload-artifact@v6
119119 with :
120120 name : TestLogs
121121 path : viperserver/logs
@@ -129,7 +129,7 @@ jobs:
129129 working-directory : viperserver/target/universal/stage/lib
130130
131131 - name : Upload ViperServer skinny JARs
132- uses : actions/upload-artifact@v4
132+ uses : actions/upload-artifact@v6
133133 with :
134134 name : viperserver-skinny-jars
135135 path : viperserver/viperserver-skinny-jars.zip
@@ -139,7 +139,7 @@ jobs:
139139 working-directory : viperserver
140140
141141 - name : Upload ViperServer fat JAR
142- uses : actions/upload-artifact@v4
142+ uses : actions/upload-artifact@v6
143143 with :
144144 name : viperserver-fat-jar
145145 path : viperserver/target/scala-2.13/viperserver.jar
@@ -149,7 +149,7 @@ jobs:
149149 working-directory : viperserver
150150
151151 - name : Upload ViperServer test fat JAR
152- uses : actions/upload-artifact@v4
152+ uses : actions/upload-artifact@v6
153153 with :
154154 name : viperserver-test-fat-jar
155155 path : viperserver/target/scala-2.13/viperserver-test.jar
@@ -171,20 +171,20 @@ jobs:
171171 steps :
172172 # we need to checkout the repo to have access to the test files
173173 - name : Checkout ViperServer
174- uses : actions/checkout@v4
174+ uses : actions/checkout@v6
175175 with :
176176 path : viperserver
177177
178178 # we need to checkout the silicon repo to have access to the logback configuration file
179179 # as we do not use anything else except the logback config, we simply take the latest master branch (in all configurations)
180180 - name : Checkout Silicon
181- uses : actions/checkout@v4
181+ uses : actions/checkout@v6
182182 with :
183183 repository : viperproject/silicon
184184 path : silicon
185185
186186 - name : Download ViperServer test fat JAR
187- uses : actions/download-artifact@v4
187+ uses : actions/download-artifact@v7
188188 with :
189189 name : viperserver-test-fat-jar
190190 path : viperserver
@@ -244,7 +244,7 @@ jobs:
244244 shell : bash
245245
246246 - name : Setup Java JDK
247- uses : actions/setup-java@v4
247+ uses : actions/setup-java@v5
248248 with :
249249 java-version : ' 11'
250250 distribution : ' temurin'
@@ -265,7 +265,7 @@ jobs:
265265
266266 - name : Upload log files
267267 if : ${{ failure() }}
268- uses : actions/upload-artifact@v4
268+ uses : actions/upload-artifact@v6
269269 with :
270270 name : TestLogs-${{ runner.os }}
271271 path : viperserver/logs
@@ -281,19 +281,19 @@ jobs:
281281 run : sudo apt-get install curl
282282
283283 - name : Download ViperServer skinny JARs
284- uses : actions/download-artifact@v4
284+ uses : actions/download-artifact@v7
285285 with :
286286 name : viperserver-skinny-jars
287287 path : deploy
288288
289289 - name : Download ViperServer fat JAR
290- uses : actions/download-artifact@v4
290+ uses : actions/download-artifact@v7
291291 with :
292292 name : viperserver-fat-jar
293293 path : deploy
294294
295295 - name : Download version file
296- uses : actions/download-artifact@v4
296+ uses : actions/download-artifact@v7
297297 with :
298298 name : versions.txt
299299
@@ -365,19 +365,19 @@ jobs:
365365 runs-on : ubuntu-latest
366366 steps :
367367 - name : Download ViperServer skinny JARs
368- uses : actions/download-artifact@v4
368+ uses : actions/download-artifact@v7
369369 with :
370370 name : viperserver-skinny-jars
371371 path : deploy
372372
373373 - name : Download ViperServer fat JAR
374- uses : actions/download-artifact@v4
374+ uses : actions/download-artifact@v7
375375 with :
376376 name : viperserver-fat-jar
377377 path : deploy
378378
379379 - name : Download version file
380- uses : actions/download-artifact@v4
380+ uses : actions/download-artifact@v7
381381 with :
382382 name : versions.txt
383383
0 commit comments