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