From b5b1e574e7b9a86a55c712606e98ff041fd793df Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 14 Dec 2025 02:08:48 +0000 Subject: [PATCH] build(deps): bump actions/cache 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/actions/settingslibs-cache-warm-up/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/settingslibs-cache-warm-up/action.yml b/.github/actions/settingslibs-cache-warm-up/action.yml index 716ebd42..bb99d323 100644 --- a/.github/actions/settingslibs-cache-warm-up/action.yml +++ b/.github/actions/settingslibs-cache-warm-up/action.yml @@ -12,7 +12,7 @@ runs: echo "key=${key}" >> $GITHUB_OUTPUT - name: Restore cache id: restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: SettingsLib/fwb key: ${{ steps.setup.outputs.key }} @@ -22,7 +22,7 @@ runs: run: ./SettingsLib/fetch.sh - name: Save cache if: steps.restore.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: SettingsLib/fwb key: ${{ steps.setup.outputs.key }}