Conversation
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.
The
github-actionschema currently acceptsnode12,node16,node20, andnode24as equivalentruns.usingenum values, even though their runtime lifecycle states differ on GitHub Actions runners.Describe each runtime individually so schema-aware editors can surface the distinction:
node12: removed from the Actions runnernode16: removed from the Actions runnernode20: deprecated, with removal announced for September 23, 2026node24: available runtimeThe values remain schema-valid. Removed and deprecated runtimes are marked with
deprecatedanddeprecationMessagerather than being rejected, since GitHub still recognizes these metadata values and runner/version behavior can differ across GitHub-hosted, self-hosted, and GHES environments.Each lifecycle annotation links to GitHub's corresponding changelog announcement. The descriptions intentionally avoid recommending a specific successor runtime so they do not need updating whenever GitHub adds a newer Node runtime.
Also allow
deprecationMessageas a SchemaStore extension forgithub-action.json.Tested locally with
yaml-language-server; deprecated runtimes receive a diagnostic and lifecycle information is shown on hover....adding some tests. draft.