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
GitHub Actions runners now force node20 actions onto node24 and emit a
deprecation warning on every run:
https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
- actions/checkout v4 -> v7
- actions/setup-node v4 -> v7
- actions/github-script v7 -> v9
- codecov/codecov-action v3 -> v7 (v3 still targets node16)
setup-node v5 started enabling npm caching automatically when package.json
has a packageManager field, and v6 kept that for npm. These workflows install
with `npm i --no-package-lock`, so caching would fail on repos without a
lockfile. Pass package-manager-cache: false to keep the v4 behaviour.
0 commit comments