Skip to content

Commit 127b5cf

Browse files
authored
Merge pull request #328 from viperproject/dependabot/github_actions/all-e3a99d68b4
Bump the all group across 1 directory with 6 updates
2 parents ff20892 + 70af70d commit 127b5cf

3 files changed

Lines changed: 21 additions & 21 deletions

File tree

.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@v6
2121
- name: Check license headers
2222
uses: viperproject/check-license-header@v2
2323
with:

.github/workflows/scala.yml

Lines changed: 18 additions & 18 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@v6
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@v6
9191
with:
9292
name: versions.txt
9393
path: versions.txt
@@ -97,7 +97,7 @@ jobs:
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

.github/workflows/update-submodules.yml

Lines changed: 2 additions & 2 deletions
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@v6
2121
with:
2222
submodules: true
2323

@@ -54,7 +54,7 @@ jobs:
5454
5555
- name: Open a pull request
5656
id: pr
57-
uses: peter-evans/create-pull-request@v7
57+
uses: peter-evans/create-pull-request@v8
5858
if: (env.PREV_SILICON_REF != env.CUR_SILICON_REF) || (env.PREV_CARBON_REF != env.CUR_CARBON_REF)
5959
with:
6060
# Use viper-admin's token to workaround a restriction of GitHub.

0 commit comments

Comments
 (0)