From 35d17cbdc9be56f41c46bc3e3b5151b89fb6fad7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Apr 2026 20:20:51 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/python-integration-tests.yml | 4 ++-- .github/workflows/python-merge-tests.yml | 4 ++-- .github/workflows/python-sample-validation.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-integration-tests.yml b/.github/workflows/python-integration-tests.yml index 48d15bceda..1d5be55a06 100644 --- a/.github/workflows/python-integration-tests.yml +++ b/.github/workflows/python-integration-tests.yml @@ -424,7 +424,7 @@ jobs: pattern: test-results-* path: test-results/ - name: Restore flaky report history cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: python/flaky-report-history.json key: flaky-report-history-integration-${{ github.run_id }} @@ -441,7 +441,7 @@ jobs: run: cat flaky-test-report.md >> $GITHUB_STEP_SUMMARY - name: Save flaky report history cache if: always() - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: python/flaky-report-history.json key: flaky-report-history-integration-${{ github.run_id }} diff --git a/.github/workflows/python-merge-tests.yml b/.github/workflows/python-merge-tests.yml index 843253e788..dd1fd119c2 100644 --- a/.github/workflows/python-merge-tests.yml +++ b/.github/workflows/python-merge-tests.yml @@ -588,7 +588,7 @@ jobs: pattern: test-results-* path: test-results/ - name: Restore flaky report history cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: python/flaky-report-history.json key: flaky-report-history-merge-${{ github.run_id }} @@ -605,7 +605,7 @@ jobs: run: cat flaky-test-report.md >> $GITHUB_STEP_SUMMARY - name: Save flaky report history cache if: always() - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: python/flaky-report-history.json key: flaky-report-history-merge-${{ github.run_id }} diff --git a/.github/workflows/python-sample-validation.yml b/.github/workflows/python-sample-validation.yml index 8b72df3b74..cefd0e8515 100644 --- a/.github/workflows/python-sample-validation.yml +++ b/.github/workflows/python-sample-validation.yml @@ -701,7 +701,7 @@ jobs: - name: Restore validation history id: cache-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: validation-history/ key: validation-history-${{ github.run_id }} @@ -719,7 +719,7 @@ jobs: run: cat trend-report.md >> "$GITHUB_STEP_SUMMARY" - name: Save validation history - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: validation-history/ key: validation-history-${{ github.run_id }}