From 4006bcabcc1ffa2bf8ef3ebf63786be84aa5326c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 12:49:18 +0000 Subject: [PATCH] build(deps): bump actions/cache from 4.0.2 to 4.1.0 Bumps [actions/cache](https://github.com/actions/cache) from 4.0.2 to 4.1.0. - [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.2...v4.1.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... 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 75149e49a..5048e006b 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -247,7 +247,7 @@ jobs: ./install-user-client - name: Restore Clang Tidy cache - uses: actions/cache/restore@v4.0.2 + uses: actions/cache/restore@v4.1.0 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 @@ -270,7 +270,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.2 + uses: actions/cache/save@v4.1.0 # always run, except if the workflow was cancelled # this means clang tidy will get cached even if some checks are failing if: success() || failure()