From 8c07201df079053b39f47edf3d5e5a92f4a85260 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Apr 2026 20:33:09 +0000 Subject: [PATCH] build(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/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c74a2e5..96ba1ff7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,7 +91,7 @@ jobs: # every failed CI retry. - name: Restore cross-toolchain cache id: cache-toolchain - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ github.workspace }}/.toolchain # Include every CMake file whose contents affect the toolchain @@ -108,7 +108,7 @@ jobs: # the overlay moved. - name: Restore buildroot cache id: cache-buildroot - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: | ${{ github.workspace }}/.buildroot/_dl @@ -131,7 +131,7 @@ jobs: # fails. Skipped on cache hit (outcome == 'skipped'). - name: Save cross-toolchain cache if: always() && steps.build-toolchain.outcome == 'success' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ${{ github.workspace }}/.toolchain key: toolchain-${{ runner.os }}-${{ hashFiles('cmake/checksums.cmake', 'cmake/toolchain_bootstrap.cmake', 'cmake/build_compiler_rt_builtins.sh', 'cmake/fetch_file.cmake', 'cmake/dash.cmake', 'cmake/doom.cmake', 'cmake/clang_wrapper.cmake', 'toolchain/pins.cmake') }} @@ -163,7 +163,7 @@ jobs: # step were to fail. - name: Save buildroot cache if: always() && steps.cache-buildroot.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: | ${{ github.workspace }}/.buildroot/_dl