From 4d6b88c21ee6d5ab29322a2fb718a732d2d08bdb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 01:27:40 +0000 Subject: [PATCH] chore: CI: 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/build-template.yml | 4 ++-- .github/workflows/update-stage0.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-template.yml b/.github/workflows/build-template.yml index 6b19860259b2..e295654aaf29 100644 --- a/.github/workflows/build-template.yml +++ b/.github/workflows/build-template.yml @@ -96,7 +96,7 @@ jobs: if: matrix.cmultilib - name: Restore Cache id: restore-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: # NOTE: must be in sync with `save` below and with `restore-cache` in `update-stage0.yml` path: | @@ -182,7 +182,7 @@ jobs: # Caching on cancellation created some mysterious issues perhaps related to improper build # shutdown if: steps.restore-cache.outputs.cache-hit != 'true' && !cancelled() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: # NOTE: must be in sync with `restore` above path: | diff --git a/.github/workflows/update-stage0.yml b/.github/workflows/update-stage0.yml index 45c554dd5304..9fd065bfea7d 100644 --- a/.github/workflows/update-stage0.yml +++ b/.github/workflows/update-stage0.yml @@ -38,7 +38,7 @@ jobs: run: | echo "NPROC=$(nproc 2>/dev/null || sysctl -n hw.logicalcpu 2>/dev/null || echo 4)" >> $GITHUB_ENV - name: Restore Cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: # NOTE: must be in sync with `restore-cache` in `build-template.yml` path: |