From 1669f4349514629e4e0b4fed9806c7278a82a23f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Feb 2026 07:46:41 +0000 Subject: [PATCH] chore(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/container-build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/container-build.yaml b/.github/workflows/container-build.yaml index a8704d5f..207cdbfa 100644 --- a/.github/workflows/container-build.yaml +++ b/.github/workflows/container-build.yaml @@ -44,7 +44,7 @@ jobs: uses: actions/checkout@v6 - name: Restore repository API cache id: repository-api-cache-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: website/data/cache key: repository-api-cache-${{ github.ref_name }}-${{ github.run_id }} @@ -104,7 +104,7 @@ jobs: if-no-files-found: warn - name: Save repository API cache if: always() - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: website/data/cache key: repository-api-cache-${{ github.ref_name }}-${{ github.run_id }}