From ba882f44ba0f900555000a327fc65a5fd5a1f383 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 03:16:08 +0000 Subject: [PATCH] build(NoTicket): 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/build-documentation.yml | 2 +- .github/workflows/integration-tests-v1.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-documentation.yml b/.github/workflows/build-documentation.yml index c2f44fb96b1..2537d26a74c 100644 --- a/.github/workflows/build-documentation.yml +++ b/.github/workflows/build-documentation.yml @@ -23,7 +23,7 @@ jobs: with: python-version: 3.x - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.cfg') }} diff --git a/.github/workflows/integration-tests-v1.yml b/.github/workflows/integration-tests-v1.yml index a638d737d3d..59b9c1f3ea4 100644 --- a/.github/workflows/integration-tests-v1.yml +++ b/.github/workflows/integration-tests-v1.yml @@ -39,7 +39,7 @@ jobs: - name: Restore cached failed tests id: cache-tests-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: | .pytest_cache/v/cache/lastfailed @@ -64,7 +64,7 @@ jobs: - name: Save failed tests id: cache-tests-save - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: failure() with: path: |