From f40668c9b417e1afa6c37c23d732f90bff15b5da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 09:16:30 +0000 Subject: [PATCH] build(deps): 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/linux.yml | 2 +- .github/workflows/windows.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index ac2b49049..0dd243d51 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -41,7 +41,7 @@ jobs: - name: Cache GTest id: cache-gtest - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: gtest/ key: ${{runner.os}}-gtest-1.11 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index ab3ea940d..8bb6e19ad 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -42,7 +42,7 @@ jobs: - name: Cache GTest id: cache-gtest - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: gtest/ key: ${{runner.os}}-gtest-1.11-${{matrix.lib}}-${{matrix.arch}}-${{matrix.build_type}} @@ -67,7 +67,7 @@ jobs: - name: Cache gflags id: cache-gflags - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: gflags/ key: ${{runner.os}}-gflags-2.2.2-${{matrix.lib}}-${{matrix.arch}}-${{matrix.build_type}}