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