From 5dd9907417c628cd61341687fdc4339e60b739b8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 21 Jan 2024 15:30:29 +0000 Subject: [PATCH] Update actions/cache action to v4 --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aaed7c43..a8bfc698 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,12 +26,12 @@ jobs: echo "username=${Env:USERNAME}" >> ${Env:GITHUB_OUTPUT} id: env - name: Bazel cache (cache) - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "${{ steps.env.outputs.userprofile }}/_bazel_${{ steps.env.outputs.username }}/cache" key: bazel-cache-${{ matrix.name }}-v1 - name: Bazel cache (install) - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "${{ steps.env.outputs.userprofile }}/_bazel_${{ steps.env.outputs.username }}/install" key: bazel-install-${{ matrix.name }}-v1 @@ -49,7 +49,7 @@ jobs: # (インストールする nvcc は解凍後で 100MB 程度なのでキャッシュ可能) - name: Cache NVCC ${{ steps.versions.outputs.cuda_version }} id: cache-cuda - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: _install\windows_x86_64\release\cuda\nvcc key: windows-cuda-${{ steps.versions.outputs.cuda_version }}.v1 @@ -108,7 +108,7 @@ jobs: echo "user=`users`" >> $GITHUB_OUTPUT id: env - name: Bazel cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "/private/var/tmp/_bazel_${{ steps.env.outputs.user }}" key: bazel-${{ matrix.name }}-v2 @@ -155,7 +155,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Bazel cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "~/.cache/bazel" key: bazel-${{ matrix.name }}-v1