From a89af22f4b6931a5fccc851567432d9dd42909f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 09:16:03 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' 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 3887ee1..488a207 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@v4 + - uses: actions/cache@v5 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 7abc916..3d628b3 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@v4 + - uses: actions/cache@v5 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@v4 + - uses: actions/cache@v5 name: Define a cache for the virtual environment based on the dependencies lock file with: path: ./.venv