Skip to content
Open
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/validate-hugo-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

# Cache Hugo modules
- name: Cache Hugo modules
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.HUGO_CACHEDIR }}
key: ${{ runner.os }}-hugomod-${{ hashFiles('**/go.sum') }}
Expand All @@ -47,7 +47,7 @@ jobs:

# Cache Hugo resources (where generated images are stored)
- name: Cache Hugo resources
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: resources
key: hugo-resources-v1-${{ hashFiles('config.*', 'themes/**', 'layouts/**') }}
Expand Down
Loading