From 1ffa34e35121f7a5a2228b7bea46219fe8630bef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 09:05:34 +0000 Subject: [PATCH] build(deps): 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.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 82f00192..ef60d97e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -81,7 +81,7 @@ jobs: python-version: "3.14" - name: Cache Wheels id: cache-wheels - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: wheelhouse key: ${{ runner.os }}-wheels-v1 @@ -201,12 +201,12 @@ jobs: cache-dependency-glob: dvc/pyproject.toml - name: install requirements run: uv pip install "./dvc[tests]" - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 id: restore-cache with: path: dvc-bench/.dvc/cache key: ${{ env.DATASET }} - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: wheelhouse key: ${{ runner.os }}-wheels-v1 @@ -226,7 +226,7 @@ jobs: -W ignore ${{ env.CPROFILE_ARGS }} - if: ${{ steps.restore-cache.outputs.cache-hit != 'true' && matrix.test.name == 'test_add_copy' }} - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: dvc-bench/.dvc/cache key: ${{ steps.restore-cache.outputs.cache-primary-key }} @@ -292,7 +292,7 @@ jobs: dvc-s3/pyproject.toml - name: install requirements run: uv pip install "./dvc[tests]" "./dvc-s3[tests]" - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: dvc-bench/.dvc/cache key: ${{ env.DATASET }} @@ -300,7 +300,7 @@ jobs: if: ${{ github.event_name == 'schedule' }} run: | echo "DVC_TEST_AWS_REPO_BUCKET=dvc-bench-test" >> "$GITHUB_ENV" - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: wheelhouse key: ${{ runner.os }}-wheels-v1 @@ -390,7 +390,7 @@ jobs: echo "DVC_TEST_AZURE_CONNECTION_STRING=$connection_string" >> $GITHUB_ENV - name: install requirements run: uv pip install "./dvc[tests]" "./dvc-azure[tests]" - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: dvc-bench/.dvc/cache key: ${{ env.DATASET }} @@ -398,7 +398,7 @@ jobs: if: ${{ github.event_name == 'schedule' }} run: | echo "DVC_TEST_AZURE_PATH=az://dvc-bench-ci" >> $GITHUB_ENV - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: wheelhouse key: ${{ runner.os }}-wheels-v1 @@ -474,7 +474,7 @@ jobs: dvc-gs/pyproject.toml - name: install reqs run: uv pip install "./dvc[tests]" "./dvc-gs[tests]" - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: dvc-bench/.dvc/cache key: ${{ env.DATASET }} @@ -489,7 +489,7 @@ jobs: if: ${{ github.event_name == 'schedule' }} run: | echo "DVC_TEST_GS_BUCKET=dvc-bench" >> "$GITHUB_ENV" - - uses: actions/cache/restore@v4 + - uses: actions/cache/restore@v5 with: path: wheelhouse key: ${{ runner.os }}-wheels-v1