Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/cache from 4.0.0 to 4.0.1 #2946

Merged
merged 1 commit into from
Mar 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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()
Expand Down
Loading