From 84be5a28c4a24681fdf1c4b5f04e7565391e89ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 12:26:48 +0000 Subject: [PATCH] build(deps): bump actions/cache from 4.0.0 to 4.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 4.0.0 to 4.0.1. - [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/v4.0.0...v4.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/CI.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 5dc3ff3fa..28ecb3faf 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -220,7 +220,7 @@ jobs: ./install-user-client - name: Restore Clang Tidy cache - uses: actions/cache/restore@v4.0.0 + uses: actions/cache/restore@v4.0.1 with: # since the ctcache is just a list of checksums that were checked, we want to write to it every ci run to keep it up to date # otherwise github actions just restores some old cache if the key didn't change @@ -243,7 +243,7 @@ jobs: PATH=~/.local/bin:"$PATH" CTCACHE_DIR=/tmp/ci-ctcache ../util/clang-tidy.sh - name: Save Clang Tidy cache - uses: actions/cache/save@v4.0.0 + uses: actions/cache/save@v4.0.1 # always run, except if the workflow was cancelled # this means clang tidy will get cached even if some checks are failing if: success() || failure()