From ffe3cb0c17d81361b79c9ffc490c74d962561163 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 19:22:35 +0000 Subject: [PATCH] chore(deps): 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_cmake.yml | 2 +- .github/workflows/ci_coverage.yml | 2 +- .github/workflows/ci_documentation.yml | 4 ++-- .github/workflows/ci_license.yml | 2 +- .github/workflows/ci_linux.yml | 2 +- .github/workflows/ci_macos.yml | 2 +- .github/workflows/ci_misc.yml | 2 +- .github/workflows/ci_update_cookbook.yml | 2 +- .github/workflows/cron_api.yml | 2 +- .github/workflows/cron_avx2.yml | 2 +- .github/workflows/cron_codeql.yml | 2 +- .github/workflows/cron_latest_libraries.yml | 2 +- .github/workflows/cron_no_optional_libraries.yml | 2 +- .github/workflows/cron_sanitizer.yml | 2 +- .github/workflows/draft_release.yml | 2 +- .github/workflows/ram_usage.yml | 2 +- 16 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci_cmake.yml b/.github/workflows/ci_cmake.yml index 9ae017e539..774328bde9 100644 --- a/.github/workflows/ci_cmake.yml +++ b/.github/workflows/ci_cmake.yml @@ -49,7 +49,7 @@ jobs: image: ghcr.io/seqan/${{ matrix.compiler }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Configure tests run: | diff --git a/.github/workflows/ci_coverage.yml b/.github/workflows/ci_coverage.yml index c561f1a3a8..d02a4ef779 100644 --- a/.github/workflows/ci_coverage.yml +++ b/.github/workflows/ci_coverage.yml @@ -38,7 +38,7 @@ jobs: image: ghcr.io/seqan/${{ matrix.compiler }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/ci_documentation.yml b/.github/workflows/ci_documentation.yml index 5e40fabf6e..54fc77ef27 100644 --- a/.github/workflows/ci_documentation.yml +++ b/.github/workflows/ci_documentation.yml @@ -34,12 +34,12 @@ jobs: steps: - name: Checkout if: github.event_name != 'pull_request_target' - uses: actions/checkout@v6 + uses: actions/checkout@v7 # pull_request_target does not checkout the merge commit by default - name: Checkout if: github.event_name == 'pull_request_target' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: "refs/pull/${{ github.event.number }}/merge" diff --git a/.github/workflows/ci_license.yml b/.github/workflows/ci_license.yml index 5bc4634178..5b3c9b79f4 100644 --- a/.github/workflows/ci_license.yml +++ b/.github/workflows/ci_license.yml @@ -32,7 +32,7 @@ jobs: if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint' steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: REUSE Compliance Check uses: fsfe/reuse-action@v6 diff --git a/.github/workflows/ci_linux.yml b/.github/workflows/ci_linux.yml index c380141be4..59cbfed053 100644 --- a/.github/workflows/ci_linux.yml +++ b/.github/workflows/ci_linux.yml @@ -38,7 +38,7 @@ jobs: image: ghcr.io/seqan/${{ matrix.compiler }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup cache uses: seqan/actions/setup-actions-cache@main diff --git a/.github/workflows/ci_macos.yml b/.github/workflows/ci_macos.yml index fce3b84ccd..a9088504c6 100644 --- a/.github/workflows/ci_macos.yml +++ b/.github/workflows/ci_macos.yml @@ -36,7 +36,7 @@ jobs: compiler: ["clang-latest", "clang-second-latest", "clang-third-latest", "gcc-latest", "gcc-second-latest", "gcc-third-latest"] steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup toolchain uses: seqan/actions/setup-toolchain@main diff --git a/.github/workflows/ci_misc.yml b/.github/workflows/ci_misc.yml index 02126e1887..ba63333e65 100644 --- a/.github/workflows/ci_misc.yml +++ b/.github/workflows/ci_misc.yml @@ -39,7 +39,7 @@ jobs: image: ghcr.io/seqan/${{ matrix.compiler }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup cache uses: seqan/actions/setup-actions-cache@main diff --git a/.github/workflows/ci_update_cookbook.yml b/.github/workflows/ci_update_cookbook.yml index 47c47f7423..bb6b0d29a4 100644 --- a/.github/workflows/ci_update_cookbook.yml +++ b/.github/workflows/ci_update_cookbook.yml @@ -28,7 +28,7 @@ jobs: timeout-minutes: 15 steps: - name: Checkout SeqAn3 - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: token: ${{ secrets.SEQAN_ACTIONS_PAT }} diff --git a/.github/workflows/cron_api.yml b/.github/workflows/cron_api.yml index a86e34e9eb..3c8eba718d 100644 --- a/.github/workflows/cron_api.yml +++ b/.github/workflows/cron_api.yml @@ -37,7 +37,7 @@ jobs: image: ghcr.io/seqan/${{ matrix.compiler }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Configure tests run: | diff --git a/.github/workflows/cron_avx2.yml b/.github/workflows/cron_avx2.yml index 8d114c4d5d..d504dff8ed 100644 --- a/.github/workflows/cron_avx2.yml +++ b/.github/workflows/cron_avx2.yml @@ -39,7 +39,7 @@ jobs: image: ghcr.io/seqan/${{ matrix.compiler }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Configure tests run: | diff --git a/.github/workflows/cron_codeql.yml b/.github/workflows/cron_codeql.yml index 4af48d0e03..74ab9979a1 100644 --- a/.github/workflows/cron_codeql.yml +++ b/.github/workflows/cron_codeql.yml @@ -33,7 +33,7 @@ jobs: image: ghcr.io/seqan/gcc-second-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Initialize CodeQL uses: github/codeql-action/init@v4 diff --git a/.github/workflows/cron_latest_libraries.yml b/.github/workflows/cron_latest_libraries.yml index 937dbca796..f332f505ca 100644 --- a/.github/workflows/cron_latest_libraries.yml +++ b/.github/workflows/cron_latest_libraries.yml @@ -39,7 +39,7 @@ jobs: image: ghcr.io/seqan/${{ matrix.compiler }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Update dependencies run: | diff --git a/.github/workflows/cron_no_optional_libraries.yml b/.github/workflows/cron_no_optional_libraries.yml index 27e38a7c5e..a45bed14a1 100644 --- a/.github/workflows/cron_no_optional_libraries.yml +++ b/.github/workflows/cron_no_optional_libraries.yml @@ -53,7 +53,7 @@ jobs: image: ${{ matrix.image || '' }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup compiler if: contains(matrix.os, 'macos') diff --git a/.github/workflows/cron_sanitizer.yml b/.github/workflows/cron_sanitizer.yml index 552fbff33f..10a31c582c 100644 --- a/.github/workflows/cron_sanitizer.yml +++ b/.github/workflows/cron_sanitizer.yml @@ -77,7 +77,7 @@ jobs: image: ${{ matrix.image || '' }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup compiler if: contains(matrix.os, 'macos') diff --git a/.github/workflows/draft_release.yml b/.github/workflows/draft_release.yml index 54570f0cc9..fb0151556c 100644 --- a/.github/workflows/draft_release.yml +++ b/.github/workflows/draft_release.yml @@ -30,7 +30,7 @@ jobs: image: ghcr.io/seqan/gcc-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: token: ${{ secrets.SEQAN_ACTIONS_PAT }} path: seqan3 diff --git a/.github/workflows/ram_usage.yml b/.github/workflows/ram_usage.yml index f036cafd3e..9fa255ae8f 100644 --- a/.github/workflows/ram_usage.yml +++ b/.github/workflows/ram_usage.yml @@ -35,7 +35,7 @@ jobs: if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' steps: - name: Checkout SeqAn3 - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: seqan3