CI: run the CentOS 7 jobs' actions on a Node 24 built for glibc 2.17 - #277
Merged
Merged
Conversation
GitHub removed Node 20 from its runners on 2026-09-23 and now runs every JavaScript action on Node 24, so the CentOS 7 jobs (VFX CY2021 and CY2022) failed in actions/checkout: the runner's Node 24 needs glibc 2.28, and CentOS 7 has 2.17. They had been mounting an unofficial glibc 2.17 build of Node 20 over the runner's, which the runner no longer uses, and the ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION opt-out is gone. Those jobs now mount the unofficial glibc 2.17 build of Node 24 over the runner's in the same way, and check its SHA-256 before unpacking it. The two environment variables for the old Node versions go, since the runner ignores them now. Assisted-by: Claude Code / Claude Opus 5.5 Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com> Signed-off-by: Gary Oberbrunner <garyo@darkstarsystems.com>
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
actions/checkoutsince then, on Add metadata for OpenGL texture handle #276 and on main: the runner's Node 24 needs glibc 2.28, and CentOS 7 has 2.17.ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSIONopt-out is gone.Test plan
centos:7container (glibc 2.17), and the new install step downloads, verifies and unpacks it there.Assisted-by: Claude Code / Claude Opus 5.5