From 1751b3c962f701dfdf1c1c33d827f14b4d2f360e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 19:21:46 +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.yaml | 12 ++++++------ .github/workflows/docs.yaml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 159f5fe..af502f8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: fetch-depth: 0 # Ensures we get commit history for diffing - name: 🔄 Cache repository - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: . # Cache the entire repo key: repo-${{ github.sha }} @@ -32,7 +32,7 @@ jobs: changed_files: ${{ steps.changed-python-files.outputs.all_changed_files }} steps: - name: 🔄 Restore repository from cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: . key: repo-${{ github.sha }} @@ -54,7 +54,7 @@ jobs: pull-requests: write steps: - name: 🔄 Restore repository from cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: . key: repo-${{ github.sha }} @@ -74,7 +74,7 @@ jobs: pull-requests: write steps: - name: 🔄 Restore repository from cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: . key: repo-${{ github.sha }} @@ -95,7 +95,7 @@ jobs: # pull-requests: write # steps: # - name: 🔄 Restore repository from cache - # uses: actions/cache@v4 + # uses: actions/cache@v5 # with: # path: . # key: repo-${{ github.sha }} @@ -126,7 +126,7 @@ jobs: if: ${{ needs.changed-files.outputs.changed_files != '' }} steps: - name: 🔄 Restore repository from cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: . key: repo-${{ github.sha }} diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index e95a9e0..73f094d 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -32,7 +32,7 @@ jobs: python-version-file: 'pyproject.toml' - 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