From 69e5263f2a6904318faacce5179f1569aa5ca521 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 22:33:11 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/links.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6da6d2..e325582 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/setup-python@v6 with: python-version: '3.12' - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: key: ${{ github.ref }} path: .cache diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index 0ec42fa..f2aa4e3 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -22,7 +22,7 @@ jobs: - name: Restore lychee cache id: restore-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: .lycheecache key: cache-lychee-${{ github.sha }} @@ -36,7 +36,7 @@ jobs: fail: false - name: Save lychee cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 if: always() with: path: .lycheecache