From 1ade83c9eeaa7a4a18495bdb1343fbce8ba1357f Mon Sep 17 00:00:00 2001 From: Nils Wentzell Date: Tue, 23 Apr 2024 14:27:42 -0400 Subject: [PATCH] [actions] Bump actions/cache restore/save to version 4 --- .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 15f352c3..55cbc541 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/cache/restore@v3 + - uses: actions/cache/restore@v4 with: path: ${{ env.CCACHE_DIR }} key: ccache-${{ matrix.os }}-${{ matrix.cc }}-${{ github.run_id }} @@ -133,7 +133,7 @@ jobs: if: always() run: ccache -sv - - uses: actions/cache/save@v3 + - uses: actions/cache/save@v4 if: always() with: path: ${{ env.CCACHE_DIR }}