Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/_verify_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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') }}
Expand All @@ -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
Expand Down
Loading