Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down