From ec9a4da4ae3f5bdedb476bd39eba59126b1ed2ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 18:34:25 +0000 Subject: [PATCH] Bump the actions group across 1 directory with 4 updates Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [lukka/get-cmake](https://github.com/lukka/get-cmake), [actions/cache](https://github.com/actions/cache) and [super-linter/super-linter](https://github.com/super-linter/super-linter). 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 `lukka/get-cmake` from 4.3.3 to 4.3.4 - [Release notes](https://github.com/lukka/get-cmake/releases) - [Changelog](https://github.com/lukka/get-cmake/blob/main/RELEASE_PROCESS.md) - [Commits](https://github.com/lukka/get-cmake/compare/v4.3.3...v4.3.4) 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) Updates `super-linter/super-linter` from 8.6.0 to 8.7.0 - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](https://github.com/super-linter/super-linter/compare/v8.6.0...v8.7.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: lukka/get-cmake dependency-version: 4.3.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: super-linter/super-linter dependency-version: 8.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-test-publish.yml | 20 ++++++++++---------- .github/workflows/linkcheck.yml | 2 +- .github/workflows/lint.yml | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build-test-publish.yml b/.github/workflows/build-test-publish.yml index 8c23bad9c..69d06e8ec 100644 --- a/.github/workflows/build-test-publish.yml +++ b/.github/workflows/build-test-publish.yml @@ -27,7 +27,7 @@ jobs: cmake-build-type: "MinSizeRel" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: path: Ex @@ -42,7 +42,7 @@ jobs: python -m pip install ninja - name: Get specific version of CMake, Ninja - uses: lukka/get-cmake@v4.3.3 + uses: lukka/get-cmake@v4.3.4 - name: Select Xcode if: startsWith(matrix.os, 'macos') @@ -58,7 +58,7 @@ jobs: git checkout ${{ env.itk-git-tag }} - name: Restore ExternalData cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ github.workspace }}/../bld/ExternalData/Objects key: externaldata-v1-${{ hashFiles('Ex/src/**/*.cid') }} @@ -140,7 +140,7 @@ jobs: cmake-build-type: "MinSizeRel" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: path: Ex @@ -155,10 +155,10 @@ jobs: python -m pip install ninja - name: Get specific version of CMake, Ninja - uses: lukka/get-cmake@v4.3.3 + uses: lukka/get-cmake@v4.3.4 - name: Restore ExternalData cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ github.workspace }}/../bld/ExternalData/Objects key: externaldata-superbuild-v1-${{ matrix.os }}-${{ hashFiles('Ex/src/**/*.cid') }} @@ -234,7 +234,7 @@ jobs: os: [ubuntu-24.04, windows-2022, macos-14] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python 3.11 uses: actions/setup-python@v6 with: @@ -268,7 +268,7 @@ jobs: cmake-build-type: "Release" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: path: Ex submodules: recursive @@ -279,7 +279,7 @@ jobs: python-version: 3.11 - name: Get specific version of CMake, Ninja - uses: lukka/get-cmake@v4.3.3 + uses: lukka/get-cmake@v4.3.4 - name: Install build dependencies run: | @@ -300,7 +300,7 @@ jobs: echo "Workspace: ${{ github.workspace }}" - name: Restore ExternalData cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ github.workspace }}/../bld/ExternalData/Objects key: externaldata-docs-v1-${{ hashFiles('Ex/src/**/*.cid') }} diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml index e15d40d0a..8b672c0cd 100644 --- a/.github/workflows/linkcheck.yml +++ b/.github/workflows/linkcheck.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Check links id: lychee uses: lycheeverse/lychee-action@v2 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c2c9e057d..b5fd24123 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # Full git history is needed to get a proper # list of changed files within `super-linter` @@ -22,7 +22,7 @@ jobs: python-version: 3.11 - name: Lint Python - uses: super-linter/super-linter@v8.6.0 + uses: super-linter/super-linter@v8.7.0 env: VALIDATE_ALL_CODEBASE: false VALIDATE_PYTHON_BLACK: true