From eea5f4bb4ec3602805d2177c2852e6083bbdbfbb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Feb 2026 13:34:06 +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/check-broken-links-schedule.yaml | 2 +- .github/workflows/check-broken-links.yaml | 2 +- .github/workflows/publish.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-broken-links-schedule.yaml b/.github/workflows/check-broken-links-schedule.yaml index e874965..cfeb952 100644 --- a/.github/workflows/check-broken-links-schedule.yaml +++ b/.github/workflows/check-broken-links-schedule.yaml @@ -19,7 +19,7 @@ jobs: fetch-depth: 0 - name: Restore lychee cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .lycheecache key: cache-lychee-scheduled-${{ github.sha }} diff --git a/.github/workflows/check-broken-links.yaml b/.github/workflows/check-broken-links.yaml index 9aafd8a..3a20c9a 100644 --- a/.github/workflows/check-broken-links.yaml +++ b/.github/workflows/check-broken-links.yaml @@ -22,7 +22,7 @@ jobs: # Optimize caching strategy to reduce API requests - name: Restore lychee cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .lycheecache key: cache-lychee-${{ github.sha }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bc97aa5..5bf5b27 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -40,7 +40,7 @@ jobs: # Cache Hugo's module/remote cache - name: Cache Hugo modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /root/.cache/hugo key: ${{ runner.os }}-hugo-${{ hashFiles('**/go.mod', '**/go.sum') }}