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
4 changes: 2 additions & 2 deletions .github/workflows/deploy-live.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
git config core.quotepath false
- name: Cache restore
id: cache-restore
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: ${{ runner.temp }}/hugo_cache
key: hugo-${{ github.run_id }}
Expand All @@ -111,7 +111,7 @@ jobs:
--cacheDir "${{ runner.temp }}/hugo_cache"
- name: Cache save
id: cache-save
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: ${{ runner.temp }}/hugo_cache
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
git config core.quotepath false
- name: Cache restore
id: cache-restore
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: ${{ runner.temp }}/hugo_cache
key: hugo-${{ github.run_id }}
Expand All @@ -90,7 +90,7 @@ jobs:
--cacheDir "${{ runner.temp }}/hugo_cache"
- name: Cache save
id: cache-save
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: ${{ runner.temp }}/hugo_cache
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
Expand Down