From 6e867a5d9e616964aebd638af1549f48d8985c5d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 13:05:40 +0000 Subject: [PATCH] Bump the all group with 2 updates Bumps the all group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/license-check.yml | 2 +- .github/workflows/scala.yml | 8 ++++---- .github/workflows/update-submodules.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/license-check.yml b/.github/workflows/license-check.yml index 4ef977a6..380f7da2 100644 --- a/.github/workflows/license-check.yml +++ b/.github/workflows/license-check.yml @@ -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: diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml index 2cf3a811..28665e80 100644 --- a/.github/workflows/scala.yml +++ b/.github/workflows/scala.yml @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/update-submodules.yml b/.github/workflows/update-submodules.yml index cf85ef9a..442ff5ab 100644 --- a/.github/workflows/update-submodules.yml +++ b/.github/workflows/update-submodules.yml @@ -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