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()