Skip to content

Commit 74f5997

Browse files
Bump the all group across 1 directory with 4 updates
Bumps the all group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/setup-java](https://github.com/actions/setup-java). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `actions/setup-java` from 4 to 5 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a40712d commit 74f5997

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

.github/workflows/license-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout ViperServer repo
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Check license headers
2222
uses: viperproject/check-license-header@v2
2323
with:

.github/workflows/scala.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
container: viperproject/viperserver:v4_z3_4.8.7
5656
steps:
5757
- name: Checkout ViperServer
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v5
5959
with:
6060
path: viperserver
6161
submodules: recursive
@@ -87,7 +87,7 @@ jobs:
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@v5
9191
with:
9292
name: versions.txt
9393
path: versions.txt
@@ -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@v5
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@v5
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@v5
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@v5
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@v5
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@v5
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@v6
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@v5
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@v6
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@v6
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@v6
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@v6
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@v6
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@v6
381381
with:
382382
name: versions.txt
383383

.github/workflows/update-submodules.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Check out the repo
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
submodules: true
2323

0 commit comments

Comments
 (0)