ci: clear Node 20 action deprecations#227
Merged
Merged
Conversation
Bump the actions still running on Node.js 20: - github/codeql-action/upload-sarif@v3 -> @v4 (leaked-secrets-scan). v3 also carries a separate 'CodeQL Action v3 deprecated Dec 2026, move to v4' warning; v4 runs on Node 24 and clears both. - softprops/action-gh-release v2.6.0 -> v3.0.0 (pinned to commit b4309332981a82ec1c5618f44dd2e27cc8bfbfda) in both release-smartem-workspace and release-smartem-epuplayer. v3.0.0 is a pure runtime bump (Node 20 -> Node 24), no functional changes. - actions/add-to-project@v1.0.2 -> @v2.0.0 (pr-admin). v2.0.0 runs on Node 24. Verified each target's action.yml declares 'using: node24'. The epuplayer softprops pin did not surface in recent annotations (stale run predating the Node 20 annotation rollout) but resolves to Node 20 statically.
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.
What
Bump the actions still running on Node.js 20 across this repo's workflows.
github/codeql-action/upload-sarifleaked-secrets-scan.yml@v3→@v4softprops/action-gh-releaserelease-smartem-workspace.yml,release-smartem-epuplayer.ymlv2.6.0→v3.0.0(b4309332981a82ec1c5618f44dd2e27cc8bfbfda)actions/add-to-projectpr-admin.yml@v1.0.2→@v2.0.0How I found them
Live warning annotations from recent runs plus static resolution of each
action.ymlusing:runtime. The latter mattered here: the epuplayer softprops pin and add-to-project didn't surface in annotations because their workflows last ran before GitHub's Node 20 annotation rollout (or the step was skipped) — annotations alone would have missed them. Verified all three targets declareusing: node24.With this merged, no workflow action here emits a Node 20 deprecation warning, ahead of the 2026-06-16 default flip and 2026-09-16 runner removal.