From e2c649d56ff02a4751051ebbe02af2e7e03eb576 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 11:34:28 -0700 Subject: [PATCH] build(deps): bump actions/cache from 5 to 6 (#10131) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/container_dev.yml | 2 +- .github/workflows/container_latest.yml | 2 +- .github/workflows/container_release_unified.yml | 2 +- .github/workflows/e2e.yml | 2 +- .github/workflows/performance.yml | 4 ++-- .github/workflows/postgres-tests.yml | 2 +- .github/workflows/rust-volume-server-tests.yml | 6 +++--- .github/workflows/rust_binaries_dev.yml | 4 ++-- .github/workflows/rust_binaries_release.yml | 6 +++--- .github/workflows/s3-tables-tests.yml | 2 +- .github/workflows/spark-integration-tests.yml | 2 +- 11 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/container_dev.yml b/.github/workflows/container_dev.yml index 7b4196f85..24c567bee 100644 --- a/.github/workflows/container_dev.yml +++ b/.github/workflows/container_dev.yml @@ -51,7 +51,7 @@ jobs: echo "CFLAGS_aarch64_unknown_linux_musl=-U_FORTIFY_SOURCE" >> "$GITHUB_ENV" - name: Cache cargo registry and target - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry diff --git a/.github/workflows/container_latest.yml b/.github/workflows/container_latest.yml index 29d8b66c0..ecc7513bf 100644 --- a/.github/workflows/container_latest.yml +++ b/.github/workflows/container_latest.yml @@ -97,7 +97,7 @@ jobs: echo "CFLAGS_aarch64_unknown_linux_musl=-U_FORTIFY_SOURCE" >> "$GITHUB_ENV" - name: Cache cargo registry and target - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry diff --git a/.github/workflows/container_release_unified.yml b/.github/workflows/container_release_unified.yml index 8e6a2af72..19f81732f 100644 --- a/.github/workflows/container_release_unified.yml +++ b/.github/workflows/container_release_unified.yml @@ -80,7 +80,7 @@ jobs: echo "CFLAGS_aarch64_unknown_linux_musl=-U_FORTIFY_SOURCE" >> "$GITHUB_ENV" - name: Cache cargo registry and target - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 16d097ffe..b0ed40538 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -52,7 +52,7 @@ jobs: uses: docker/setup-buildx-action@v4 - name: Cache Docker layers - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-e2e-${{ github.sha }} diff --git a/.github/workflows/performance.yml b/.github/workflows/performance.yml index 610ddb39e..1a816fd6e 100644 --- a/.github/workflows/performance.yml +++ b/.github/workflows/performance.yml @@ -185,7 +185,7 @@ jobs: - name: Cache cargo registry and target if: matrix.impl == 'rust' - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -341,7 +341,7 @@ jobs: - name: Cache cargo registry and target if: matrix.impl == 'rust' - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry diff --git a/.github/workflows/postgres-tests.yml b/.github/workflows/postgres-tests.yml index e7e332261..a5007cdb7 100644 --- a/.github/workflows/postgres-tests.yml +++ b/.github/workflows/postgres-tests.yml @@ -56,7 +56,7 @@ jobs: uses: docker/setup-buildx-action@v4 - name: Cache Docker layers - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-postgres-${{ github.sha }} diff --git a/.github/workflows/rust-volume-server-tests.yml b/.github/workflows/rust-volume-server-tests.yml index 15b3a5dec..b0439a78c 100644 --- a/.github/workflows/rust-volume-server-tests.yml +++ b/.github/workflows/rust-volume-server-tests.yml @@ -43,7 +43,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry and target - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -80,7 +80,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry and target - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -156,7 +156,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry and target - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry diff --git a/.github/workflows/rust_binaries_dev.yml b/.github/workflows/rust_binaries_dev.yml index 0aaba69cb..9c4aacc71 100644 --- a/.github/workflows/rust_binaries_dev.yml +++ b/.github/workflows/rust_binaries_dev.yml @@ -48,7 +48,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry and target - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -119,7 +119,7 @@ jobs: targets: ${{ matrix.target }} - name: Cache cargo registry and target - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry diff --git a/.github/workflows/rust_binaries_release.yml b/.github/workflows/rust_binaries_release.yml index bfe3a5970..46c596fc3 100644 --- a/.github/workflows/rust_binaries_release.yml +++ b/.github/workflows/rust_binaries_release.yml @@ -51,7 +51,7 @@ jobs: echo "OPENSSL_LIB_DIR=/usr/lib/aarch64-linux-gnu" >> "$GITHUB_ENV" - name: Cache cargo registry and target - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -140,7 +140,7 @@ jobs: targets: ${{ matrix.target }} - name: Cache cargo registry and target - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -218,7 +218,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry and target - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry diff --git a/.github/workflows/s3-tables-tests.yml b/.github/workflows/s3-tables-tests.yml index 753641b8f..b1fe433c0 100644 --- a/.github/workflows/s3-tables-tests.yml +++ b/.github/workflows/s3-tables-tests.yml @@ -588,7 +588,7 @@ jobs: - name: Restore python:3 image cache id: python-image - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /tmp/python3-image.tar key: python3-image-${{ steps.week.outputs.week }} diff --git a/.github/workflows/spark-integration-tests.yml b/.github/workflows/spark-integration-tests.yml index e1492e73b..1aa535055 100644 --- a/.github/workflows/spark-integration-tests.yml +++ b/.github/workflows/spark-integration-tests.yml @@ -150,7 +150,7 @@ jobs: - name: Cache Apache Spark if: false && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') id: cache-spark - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: spark-3.5.0-bin-hadoop3 key: spark-3.5.0-hadoop3