ci: bump actions/cache v2 → v4 so the GitHub workflows can run#18
Open
leeguooooo wants to merge 1 commit into
Open
ci: bump actions/cache v2 → v4 so the GitHub workflows can run#18leeguooooo wants to merge 1 commit into
leeguooooo wants to merge 1 commit into
Conversation
GitHub now auto-fails any workflow run that uses actions/cache@v1/v2 before the job starts (toolkit cache package shutdown, Dec 2024), so the stable/nightly jobs in linux.yml never reach the build step. Bumping to v4 (drop-in: same path/key inputs) lets them run again. Companion to e3f456f which refreshed actions/checkout.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up to the offer in #17.
linux.ymlstill pinsactions/cache@v2. Since Dec 2024 GitHub auto-fails any run usingactions/cache@v1/v2before the job even starts (the toolkit cache service was shut down), so thestable/nightlyjobs go red without ever reaching the build.v4is a drop-in replacement — samepath/keyinputs, no other changes needed.This is just the companion to your e3f456f (which refreshed
actions/checkout);cachewas the one GitHub still hard-fails on.Out of scope (left alone on purpose — yours to decide): the
actions-rs/*actions are archived/Node12 and emit deprecation warnings, andactions-rs/clippy-check@v1can't post annotations from fork PRs (Resource not accessible by integration). Those only warn; they don't hard-fail the run likecache@v2does.