build: update GitHub Actions runtime from Node 20 to Node 24#147
Merged
Conversation
Node 20 is deprecated and runners default to Node 24 as of June 2026. Update action.yml runtime and CI workflow to use Node 24.
MartinSandeCosta
left a comment
Contributor
Author
There was a problem hiding this comment.
Verified build passes with Node 24 locally
bobergj
reviewed
Jun 23, 2026
Contributor
Author
Things worth noting in the release description: 1- macOS 13.4 and earlier: Node 24 is incompatible with macOS 13.4 and earlier versions. If you are running workflows on older macOS runners, you may need to upgrade. |
- actions/checkout v4 → v7 - actions/setup-node v4 → v6 - actions/upload-artifact v4 → v7
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.5.4 to 5.7.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](microsoft/TypeScript@v5.5.4...v5.7.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.5.4 to 22.10.1. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 8.4.0 to 8.17.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.17.0/packages/eslint-plugin) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 8.4.0 to 8.17.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.17.0/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [eslint-plugin-github](https://github.com/github/eslint-plugin-github) from 5.0.1 to 5.1.4. - [Release notes](https://github.com/github/eslint-plugin-github/releases) - [Commits](github/eslint-plugin-github@v5.0.1...v5.1.4) --- updated-dependencies: - dependency-name: eslint-plugin-github dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
216c965 to
43e68a8
Compare
josecriane
approved these changes
Jun 23, 2026
bobergj
approved these changes
Jun 25, 2026
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.
Summary
node20tonode24inaction.ymlcheck-dist.yml) to use Node 24.xWhy
Node 20 is being deprecated on GitHub Actions runners. As of June 16, 2026, runners use Node 24 by default and actions still using
node20emit a deprecation warning. Node 20 will be fully removed in fall 2026.See: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
Compatibility notes
Users who need to temporarily continue using Node 20 after upgrading to this version can set the
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=trueenvironment variable in their workflows. This opt-out will stop working in fall 2026 when Node 20 is fully removed from runners.