From b90cd4a035256b250d1b843cbac450b2e241bc47 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 18:11:44 +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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a785fea23c..25c03f093cb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -181,7 +181,7 @@ jobs: - name: "[macOS/Windows] Set up build environment cache" if: runner.os != 'Linux' - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ matrix.buildenv_basepath }} key: ${{ runner.os }}-buildenv-${{ env.BUILDENV_NAME }} @@ -222,7 +222,7 @@ jobs: - name: "[Ubuntu/macOS] Set up GitHub cache for ccache" if: runner.os != 'windows' - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ matrix.compiler_cache_path }} key: ${{ matrix.os }}-${{ matrix.compiler_cache_id }}-${{ github.head_ref }}-${{ github.run_number }}