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@v6
uses: actions/checkout@v7
- name: Check license headers
uses: viperproject/check-license-header@v2
with:
Expand Down
8 changes: 4 additions & 4 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@v6
uses: actions/checkout@v7
with:
path: viperserver
submodules: recursive
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
# note that the cache path is relative to the directory in which sbt is invoked.

- name: Cache SBT
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
viperserver/sbt-cache/.sbtboot
Expand Down Expand Up @@ -171,14 +171,14 @@ jobs:
steps:
# we need to checkout the repo to have access to the test files
- name: Checkout ViperServer
uses: actions/checkout@v6
uses: actions/checkout@v7
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@v6
uses: actions/checkout@v7
with:
repository: viperproject/silicon
path: silicon
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@v6
uses: actions/checkout@v7
with:
submodules: true

Expand Down
Loading