From c6707eedc24b2554d4891a20c1945898ad38ead5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Aug 2026 22:14:47 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 6. - [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...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-wheels-cuda.yaml | 2 +- .github/workflows/test.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-wheels-cuda.yaml b/.github/workflows/build-wheels-cuda.yaml index 07b30cfc..0cd5543c 100644 --- a/.github/workflows/build-wheels-cuda.yaml +++ b/.github/workflows/build-wheels-cuda.yaml @@ -70,7 +70,7 @@ jobs: - name: VS Integration Cache id: vs-integration-cache if: runner.os == 'Windows' - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ./MSBuildExtensions key: cuda-${{ matrix.cuda }}-vs-integration diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 95f6e5a2..f0a79978 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -24,7 +24,7 @@ jobs: - name: Download model run: huggingface-cli download ${{ env.REPO_ID }} ${{ env.MODEL_FILE }} - name: Cache model - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cache/huggingface/hub key: ${{ runner.os }}-model-${{ env.REPO_ID }}-${{ env.MODEL_FILE }} @@ -46,7 +46,7 @@ jobs: python-version: ${{ matrix.python-version }} cache: 'pip' - name: Restore model cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cache/huggingface/hub key: ${{ runner.os }}-model-${{ env.REPO_ID }}-${{ env.MODEL_FILE }} @@ -78,7 +78,7 @@ jobs: cache: 'pip' - name: Restore model cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cache/huggingface/hub key: ${{ runner.os }}-model-${{ env.REPO_ID }}-${{ env.MODEL_FILE }} @@ -118,7 +118,7 @@ jobs: python3 -c "import platform; print(platform.machine(), platform.architecture())" - name: Restore model cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cache/huggingface/hub key: ${{ runner.os }}-model-${{ env.REPO_ID }}-${{ env.MODEL_FILE }} @@ -155,7 +155,7 @@ jobs: python3 -c "import platform; print(platform.machine(), platform.architecture())" - name: Restore model cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cache/huggingface/hub key: ${{ runner.os }}-model-${{ env.REPO_ID }}-${{ env.MODEL_FILE }}