From df0b511a24eefe3f5de051c2cafec7ff1b8a7508 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Jan 2026 11:33:24 -0600 Subject: [PATCH] Bump actions/cache from 4 to 5 (#3900) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/docs.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 9413c86f..aaa7d017 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -54,7 +54,7 @@ jobs: run: "cd docs && [[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true" - name: Cache Restore id: cache-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: | ${{ runner.temp }}/hugo_cache @@ -71,7 +71,7 @@ jobs: --cacheDir "${{ runner.temp }}/hugo_cache" - name: Cache Save id: cache-save - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: | ${{ runner.temp }}/hugo_cache