From 0ee4e0961d5ca2cc4e9317391cf51a4d9e8343e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 19:03:46 +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.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 75d7c58..242d631 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@v5 + uses: actions/cache@v6 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@v5 + uses: actions/cache@v6 with: path: . key: repo-${{ github.sha }} @@ -54,7 +54,7 @@ jobs: pull-requests: write steps: - name: 🔄 Restore repository from cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: . key: repo-${{ github.sha }} @@ -74,7 +74,7 @@ jobs: pull-requests: write steps: - name: 🔄 Restore repository from cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: . key: repo-${{ github.sha }} @@ -95,7 +95,7 @@ jobs: # pull-requests: write # steps: # - name: 🔄 Restore repository from cache - # uses: actions/cache@v5 + # uses: actions/cache@v6 # 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@v5 + uses: actions/cache@v6 with: path: . key: repo-${{ github.sha }} diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 430aa8d..c4aa3ad 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@v5 + - uses: actions/cache@v6 with: key: mkdocs-material-${{ env.cache_id }} path: .cache