From dd489b26ba1c1851385f47e56e899053cd53a17a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 12:23:26 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-tests.yaml | 10 +++++----- .github/workflows/release.yml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-tests.yaml b/.github/workflows/ci-tests.yaml index b99c4ecaa..e6945ea09 100644 --- a/.github/workflows/ci-tests.yaml +++ b/.github/workflows/ci-tests.yaml @@ -14,7 +14,7 @@ jobs: name: "Check codespell conformance" runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: "Run codespell" uses: codespell-project/actions-codespell@v2 docker-check: @@ -26,7 +26,7 @@ jobs: - "Debug" - "Release" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: docker/setup-qemu-action@v4 - uses: docker/setup-buildx-action@v4 - name: "Build Docker image" @@ -96,7 +96,7 @@ jobs: - "capio/server" - "capio/tests" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: "Run clang-format style check" uses: DoozyX/clang-format-lint-action@v0.20 with: @@ -133,7 +133,7 @@ jobs: image: ${{ matrix.compiler }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: "Install gfortran (OpenMPI dependency)" if: ${{ startsWith(matrix.compiler, 'gcc:') }} @@ -256,7 +256,7 @@ jobs: needs: [ "unit-tests" , "codespell-check" , "format-check" ] runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: "Download artifacts" uses: actions/download-artifact@v8 - name: "Upload coverage to Codecov" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 17463c92b..ff2b10901 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-22.04 if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: docker/setup-qemu-action@v4 - uses: docker/setup-buildx-action@v4 - uses: docker/login-action@v4 @@ -41,7 +41,7 @@ jobs: contents: write if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: "Get CAPIO version" run: echo "CAPIO_VERSION=$(cat CMakeLists.txt | grep " VERSION" | awk '{print $2}')" >> $GITHUB_ENV - name: "Check tag existence"