From 1e4863dac2e975af2ece23fc0bfe6ef4997b47d0 Mon Sep 17 00:00:00 2001 From: Michael Warres Date: Mon, 3 Mar 2025 21:02:47 +0000 Subject: [PATCH] Update build action to use actions/cache@v4 actions/cache@v1 is no longer supported: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down Signed-off-by: Michael Warres --- .github/workflows/cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml index 49dc761..0dc6daf 100644 --- a/.github/workflows/cpp.yml +++ b/.github/workflows/cpp.yml @@ -67,7 +67,7 @@ jobs: - uses: actions/checkout@v1 - name: Mount bazel cache - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: "/home/runner/.cache/bazel" key: bazel