From c84feaf53d83a23fb4631cbca119ca9fcd1e8403 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Feb 2026 09:03:31 +0000 Subject: [PATCH] Bump actions/cache from 3 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 3 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/v3...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/lychee.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lychee.yml b/.github/workflows/lychee.yml index 1d7c0f158..88048defc 100644 --- a/.github/workflows/lychee.yml +++ b/.github/workflows/lychee.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v4.2.2 - name: "📤 Restore cache" id: restore-cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v5 with: path: .lycheecache key: cache-lychee-${{ github.sha }} @@ -48,7 +48,7 @@ jobs: GITHUB_TOKEN: ${{ github.token }} - name: "📥 Save cache" - uses: actions/cache/save@v3 + uses: actions/cache/save@v5 if: always() with: path: .lycheecache