From d85edc9e8f72cde100d9d1ebacdb6b5e267f8367 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 09:05:22 +0000 Subject: [PATCH] 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/ci_tests.yaml | 2 +- .github/workflows/publish-docs-on-master.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_tests.yaml b/.github/workflows/ci_tests.yaml index b92dbab..d62a594 100644 --- a/.github/workflows/ci_tests.yaml +++ b/.github/workflows/ci_tests.yaml @@ -24,7 +24,7 @@ jobs: uses: astral-sh/setup-uv@v7 with: enable-cache: true - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Define a cache for the virtual environment based on the dependencies lock file with: path: ./.venv diff --git a/.github/workflows/publish-docs-on-master.yaml b/.github/workflows/publish-docs-on-master.yaml index 006479b..48db302 100644 --- a/.github/workflows/publish-docs-on-master.yaml +++ b/.github/workflows/publish-docs-on-master.yaml @@ -23,7 +23,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: key: mkdocs-material-${{ env.cache_id }} path: .cache @@ -33,7 +33,7 @@ jobs: uses: astral-sh/setup-uv@v7 with: enable-cache: true - - uses: actions/cache@v5 + - uses: actions/cache@v6 name: Define a cache for the virtual environment based on the dependencies lock file with: path: ./.venv