ci: upgrade GitHub Actions off deprecated Node 20#2
Merged
Conversation
Node 20 action runtimes are removed from GitHub runners on 2026-06-16. Bump the affected actions to their Node 24 majors: - actions/checkout v4 -> v6 - hashicorp/setup-terraform v3 -> v4 - actions/setup-python v5 -> v6 - extractions/setup-just v2 -> v4 setup-tflint stays at v4 (no Node 24 major published yet).
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.
Why
GitHub is removing the Node 20 action runtime from runners on 2026-06-16; actions still on
node20will break. Our auto-tag run already surfaced the deprecation warning foractions/checkout@v4.I verified each action's runtime via its
action.ymlusing:field (current vs. target) rather than guessing.Changes
actions/checkouthashicorp/setup-terraformactions/setup-pythonextractions/setup-justDeliberately left alone
terraform-linters/setup-tflint@v4— stillnode20, and no Node 24 major is published yet. Bumping wouldn't help; will revisit when upstream ships one. (This means one Node-20 warning may persist until then.)All four target majors confirmed to exist as real tag refs. YAML validated for all four workflows.
Verification
This same-repo PR runs the full pipeline using the upgraded actions, so a green check here is the proof they work.