From 0069af9fa73a0295c840e6a0d1565f92f425ddf6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 18:54:20 +0000 Subject: [PATCH] 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/flakey-test-repro.yml | 4 ++-- .github/workflows/python-package.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/flakey-test-repro.yml b/.github/workflows/flakey-test-repro.yml index 1d3c404f6..0e700b1ee 100644 --- a/.github/workflows/flakey-test-repro.yml +++ b/.github/workflows/flakey-test-repro.yml @@ -84,7 +84,7 @@ jobs: - name: Restore cached kafka releases id: cache-servers-dist-restore - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: servers/dist key: servers-dist-${{ github.event.inputs.kafka_version }} @@ -93,7 +93,7 @@ jobs: run: make servers/${{ github.event.inputs.kafka_version }}/kafka-bin - name: Update kafka release cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: servers/dist key: ${{ steps.cache-servers-dist-restore.outputs.cache-primary-key }} diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 0a5c0e6ef..3d021bcea 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -77,7 +77,7 @@ jobs: java-version: 23 - name: Restore cached kafka releases id: cache-servers-dist-restore - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: servers/dist key: servers-dist-${{ matrix.kafka }} @@ -86,7 +86,7 @@ jobs: - name: Update kafka release cache if: github.ref == 'refs/heads/master' id: cache-servers-dist-save - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: servers/dist key: ${{ steps.cache-servers-dist-restore.outputs.cache-primary-key }}