Conversation
hghmn
approved these changes
Feb 26, 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.
https://endorlabs.atlassian.net/browse/CR-750
Bump sub-action Node.js runtime from node16 to node24
Upgrades the Setup, Sign, and Verify sub-actions from the deprecated Node.js 16 runtime to Node.js 24, aligning them with the main Scan action which was upgraded in #90.
Changes
setup/action.yml→using: "node24"(wasnode16)sign/action.yml→using: "node24"(wasnode16)verify/action.yml→using: "node24"(wasnode16)Context
using: "node16"have been silently falling back to Node 20 since then — the YAML was misleading but not causing failures.action.yml) was upgraded tonode24in Bump node versions to Node 24 #90, but the sub-actions were missed.dist/changes required — theusingfield only controls which Node.js runtime GitHub uses to execute the bundled JS on the runner. The bundled code targets ES2016 and uses only standard Node APIs compatible across all versions.Testing