From 0a728ec93141eddc4294730c4dd9f1419e9e3e68 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 14:17:24 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 8 ++++---- .github/workflows/daily_build.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0ec8a626..0c4a1a3e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,7 +41,7 @@ jobs: # Boost はよくダウンロード先に繋がらずエラーになるのでキャッシュする - name: Cache Boost ${{ steps.versions.outputs.boost_version }} id: cache-boost - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: _cache\boost key: windows-boost-${{ steps.versions.outputs.boost_version }}.zip.v6 @@ -50,7 +50,7 @@ jobs: # (インストールする nvcc は解凍後で 100MB 程度なのでキャッシュ可能) - name: Cache NVCC ${{ steps.versions.outputs.wincuda_version }} id: cache-cuda - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: build\windows_x86_64\_install\cuda\nvcc key: windows-cuda-${{ steps.versions.outputs.wincuda_version }}.v2 @@ -97,7 +97,7 @@ jobs: id: versions - name: Cache Boost ${{ steps.versions.outputs.boost_version }} id: cache-boost - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: _cache/boost key: macos-boost-${{ steps.versions.outputs.boost_version }}.tar.gz.v3 @@ -151,7 +151,7 @@ jobs: id: versions - name: Cache Boost ${{ steps.versions.outputs.boost_version }} id: cache-boost - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: _cache/boost key: ${{ matrix.name }}-boost-${{ steps.versions.outputs.boost_version }}.tar.gz.v3 diff --git a/.github/workflows/daily_build.yml b/.github/workflows/daily_build.yml index f80dc0e3..39a10f47 100644 --- a/.github/workflows/daily_build.yml +++ b/.github/workflows/daily_build.yml @@ -30,13 +30,13 @@ jobs: id: versions - name: Cache Boost ${{ steps.versions.outputs.boost_version }} id: cache-boost - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: _cache\boost key: windows-boost-${{ steps.versions.outputs.boost_version }}.zip.v5 - name: Cache NVCC ${{ steps.versions.outputs.wincuda_version }} id: cache-cuda - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: build\windows_x86_64\_install\cuda\nvcc key: windows-cuda-${{ steps.versions.outputs.wincuda_version }}.v1 @@ -60,7 +60,7 @@ jobs: id: versions - name: Cache Boost ${{ steps.versions.outputs.boost_version }} id: cache-boost - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: _cache/boost key: macos-boost-${{ steps.versions.outputs.boost_version }}.tar.gz.v2 @@ -95,7 +95,7 @@ jobs: id: versions - name: Cache Boost ${{ steps.versions.outputs.boost_version }} id: cache-boost - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: _cache/boost key: ${{ matrix.name }}-boost-${{ steps.versions.outputs.boost_version }}.tar.gz.v2