You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updates actions/cache from v4 to v5 in CI and release so the workflows stop emitting the GitHub Actions Node 20 deprecation warning.
Why
actions/cache@v4 still runs on the deprecated Node 20 runtime. checkout and setup-node were already on Node 24-capable versions, so the warning was coming from cache only.
Bumps actions/cache from v4 to v5 (pinned commit 27d5ce7f) in both the CI and Release workflows to eliminate the GitHub Actions Node 20 deprecation warning. The change is mechanical and consistent — cache path, key hash expression, and all surrounding steps are untouched.
Confidence Score: 5/5
Safe to merge — minimal, targeted version bump with no behavioral changes.
The only change is upgrading actions/cache from v4 to v5 in two workflow files using a pinned SHA, consistent with the existing security practice across all other actions in these files. No logic, secrets handling, or cache configuration was modified. No P0/P1 findings.
No files require special attention.
Important Files Changed
Filename
Overview
.github/workflows/ci.yml
Updates actions/cache from v4 to v5 (pinned SHA 27d5ce7f...); cache path, key, and all other workflow steps unchanged.
.github/workflows/release.yml
Updates actions/cache from v4 to v5 (pinned SHA 27d5ce7f...) in both the verify and publish jobs; no other changes.
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Push / PR / workflow_dispatch] --> B[CI: validate job]
B --> C[actions/checkout v6]
C --> D[actions/setup-node v6]
D --> E[oven-sh/setup-bun v2]
E --> F[actions/cache v5 ✅]
F --> G[npm install]
G --> H[build / lint / typecheck / test]
H --> I[verify package tarballs]
J[workflow_dispatch] --> K[Release: verify job]
K --> L[actions/checkout v6]
L --> M[actions/setup-node v6]
M --> N[oven-sh/setup-bun v2]
N --> O[actions/cache v5 ✅]
O --> P[npm install / build / test]
P --> Q{publish_to_npm?}
Q -- yes --> R[Release: publish job matrix]
R --> S[actions/checkout v6]
S --> T[actions/setup-node v6]
T --> U[oven-sh/setup-bun v2]
U --> V[actions/cache v5 ✅]
V --> W[npm install / build / publish]
Q -- no --> X[done]
The reason will be displayed to describe this comment to others. Learn more.
✅ Devin Review: No Issues Found
Devin Review analyzed this PR and found no bugs or issues to report.
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
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.
Summary
Updates
actions/cachefromv4tov5in CI and release so the workflows stop emitting the GitHub Actions Node 20 deprecation warning.Why
actions/cache@v4still runs on the deprecated Node 20 runtime.checkoutandsetup-nodewere already on Node 24-capable versions, so the warning was coming from cache only.Validation
git diff --checkactionlint .github/workflows/*.ymlvalidatecheck