From b4865b8a52c859a3f9bdcfb42829cd40836c4f4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 10:16:38 +0000 Subject: [PATCH] build(deps): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/_hugo.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/_hugo.yml b/.github/workflows/_hugo.yml index e287d97b..5bcbc3b6 100644 --- a/.github/workflows/_hugo.yml +++ b/.github/workflows/_hugo.yml @@ -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: | @@ -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: | @@ -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: |