From 6821772138c2fb6219fe9d5fad64001ba9fd8057 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 12:44:29 +0000 Subject: [PATCH] MAINT: Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/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/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build_and_test.yml | 2 +- .github/workflows/docs.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 7ef7a8e457..38ccc0ce84 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -44,7 +44,7 @@ jobs: python-version: ${{ env.PRE_COMMIT_PYTHON_VERSION }} - name: Cache pre-commit environments - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pre-commit key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 82e5340027..ae97a5e6c0 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -113,7 +113,7 @@ jobs: # miss -> we do a fresh build and actions/cache saves the result on # job success, so the next run with the same SHA hits. id: cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: doc/_build/html key: docs-${{ env.CACHE_VERSION }}-${{ matrix.slug }}-${{ steps.sha.outputs.sha }}