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 }}