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
6 changes: 3 additions & 3 deletions .github/workflows/_hugo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/configure-pages@v5

# Tier 1: Dependencies cache (changes infrequently)
- uses: actions/cache@v4
- uses: actions/cache@v5
name: Cache dependencies
with:
path: |
Expand All @@ -45,7 +45,7 @@ jobs:
- run: bun install

# Tier 2: Hugo build cache (changes with any build-affecting file)
- uses: actions/cache@v4
- uses: actions/cache@v5
name: Cache Hugo build resources
with:
path: |
Expand All @@ -57,7 +57,7 @@ jobs:
${{ runner.os }}-hugo-

# Tier 3: Content and template cache (comprehensive file tracking)
- uses: actions/cache@v4
- uses: actions/cache@v5
name: Cache Hugo content and assets
with:
path: |
Expand Down