From 9b341107455bbc784d17c0c1387df595bf8d1516 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 19:30:29 +0100 Subject: [PATCH] build(deps): bump actions/cache from 3 to 4 (#1064) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .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 ac2b490..0dd243d 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 ab3ea94..8bb6e19 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}}