Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/license-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout ViperServer repo
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Check license headers
uses: viperproject/check-license-header@v2
with:
Expand Down
34 changes: 17 additions & 17 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
container: viperproject/viperserver:v4_z3_4.8.7
steps:
- name: Checkout ViperServer
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: viperserver
submodules: recursive
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
echo "Silver: commit ${{ env.SILICON_SILVER_REF }}" >> versions.txt
# first line overwrites versions.txt in case it already exists, all other append to the file
- name: Upload version file
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: versions.txt
path: versions.txt
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:

- name: Upload log files
if: ${{ failure() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: TestLogs
path: viperserver/logs
Expand All @@ -129,7 +129,7 @@ jobs:
working-directory: viperserver/target/universal/stage/lib

- name: Upload ViperServer skinny JARs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: viperserver-skinny-jars
path: viperserver/viperserver-skinny-jars.zip
Expand All @@ -139,7 +139,7 @@ jobs:
working-directory: viperserver

- name: Upload ViperServer fat JAR
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: viperserver-fat-jar
path: viperserver/target/scala-2.13/viperserver.jar
Expand All @@ -149,7 +149,7 @@ jobs:
working-directory: viperserver

- name: Upload ViperServer test fat JAR
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: viperserver-test-fat-jar
path: viperserver/target/scala-2.13/viperserver-test.jar
Expand All @@ -171,20 +171,20 @@ jobs:
steps:
# we need to checkout the repo to have access to the test files
- name: Checkout ViperServer
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: viperserver

# we need to checkout the silicon repo to have access to the logback configuration file
# as we do not use anything else except the logback config, we simply take the latest master branch (in all configurations)
- name: Checkout Silicon
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: viperproject/silicon
path: silicon

- name: Download ViperServer test fat JAR
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: viperserver-test-fat-jar
path: viperserver
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
shell: bash

- name: Setup Java JDK
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: '11'
distribution: 'temurin'
Expand All @@ -265,7 +265,7 @@ jobs:

- name: Upload log files
if: ${{ failure() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: TestLogs-${{ runner.os }}
path: viperserver/logs
Expand All @@ -281,19 +281,19 @@ jobs:
run: sudo apt-get install curl

- name: Download ViperServer skinny JARs
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: viperserver-skinny-jars
path: deploy

- name: Download ViperServer fat JAR
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: viperserver-fat-jar
path: deploy

- name: Download version file
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: versions.txt

Expand Down Expand Up @@ -365,19 +365,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download ViperServer skinny JARs
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: viperserver-skinny-jars
path: deploy

- name: Download ViperServer fat JAR
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: viperserver-fat-jar
path: deploy

- name: Download version file
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: versions.txt

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-submodules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: true

Expand Down
Loading