diff --git a/.github/workflows/build-wheels-cuda.yaml b/.github/workflows/build-wheels-cuda.yaml index 07b30cf..26922f6 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@v5 with: path: ./MSBuildExtensions key: cuda-${{ matrix.cuda }}-vs-integration diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 95f6e5a..4c00d30 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@v5 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@v5 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@v5 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@v5 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@v5 with: path: ~/.cache/huggingface/hub key: ${{ runner.os }}-model-${{ env.REPO_ID }}-${{ env.MODEL_FILE }}