From 05f5c54d26afffe7b855abfd0b7d10a26309a19e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Dec 2025 09:59:04 +0100 Subject: [PATCH] Bump actions/cache from 4 to 5 (#541) See https://github.com/actions/cache/releases/tag/v5.0.0. --- .github/workflows/update.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 68bbeeb0..7463176b 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -22,7 +22,7 @@ jobs: # See https://github.com/actions/cache/tree/main/save#always-save-cache. - name: Restore repositories and HTTP requests cache id: cache-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: key: 'update-cache' path: ~/.cache @@ -73,7 +73,7 @@ jobs: # See https://github.com/actions/cache/tree/main/save#always-save-cache. - name: Save repositories and HTTP requests cache id: cache-save - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: always() && steps.cache-restore.outputs.cache-hit != 'true' with: key: ${{ steps.cache-restore.outputs.cache-primary-key }}