From d55715416045dd386d70becd2ea17b3972cd4fa8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 06:03:32 +0000 Subject: [PATCH] build(deps): 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/_verify_examples.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/_verify_examples.yml b/.github/workflows/_verify_examples.yml index b7990913..8bcf2b78 100644 --- a/.github/workflows/_verify_examples.yml +++ b/.github/workflows/_verify_examples.yml @@ -28,7 +28,7 @@ jobs: sudo mkdir -p "${TEMPDIR}" sudo mount -t tmpfs none "$TEMPDIR" sudo chown runner "$TEMPDIR" - - uses: actions/cache/restore@v5 + - uses: actions/cache/restore@v6 id: cache with: path: /cache/docker @@ -47,7 +47,7 @@ jobs: sudo du -ch /var/lib/docker | grep total sudo du -ch /var/lib/docker-examples | grep total sudo df -h - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: /home/runner/.cache key: ${{ runner.os }}-bazel-${{ hashFiles('**/BUILD', '**/*bzl', 'WORKSPACE') }} @@ -70,7 +70,7 @@ jobs: sudo tar cf - -C /var/lib/docker-examples . | zstd - -q -T0 -o "${TEMPDIR}/docker.tar.zst" ls -alh "${TEMPDIR}/docker.tar.zst" if: steps.cache.outputs.cache-hit != 'true' && github.event_name != 'pull_request' - - uses: actions/cache/save@v5 + - uses: actions/cache/save@v6 if: steps.cache.outputs.cache-hit != 'true' && github.event_name != 'pull_request' with: path: /cache/docker