From d9f652034449914b0269b58a15302c486d9fd2e0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Jan 2026 10:04:49 +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/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48ac47341..01c6f32da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Restore cached pixi lockfile - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: restore-pixi-lock with: enableCrossOsArchive: true @@ -60,7 +60,7 @@ jobs: # https://github.com/actions/cache/blob/main/tips-and-workarounds.md#update-a-cache - name: Restore cached hypothesis directory id: restore-hypothesis-cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: .hypothesis/ key: cache-hypothesis-${{ runner.os }}-${{ github.run_id }} @@ -74,7 +74,7 @@ jobs: - name: Save cached hypothesis directory id: save-hypothesis-cache if: always() && steps.unit-test.outcome != 'skipped' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: .hypothesis/ key: cache-hypothesis-${{ runner.os }}-${{ github.run_id }} @@ -109,7 +109,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Restore cached pixi lockfile - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: restore-pixi-lock with: enableCrossOsArchive: true @@ -158,7 +158,7 @@ jobs: - name: Checkout uses: actions/checkout@v5 - name: Restore cached pixi lockfile - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 id: restore-pixi-lock with: path: |