Background
PR #1088 pinned actions/upload-artifact to v4.6.2 (in .github/workflows/ci-build.yml) to avoid an intermittent silent-failure regression on v7 (see actions/upload-artifact#806).
v4 runs on Node.js 20. GitHub is sunsetting Node 20 on the Actions runner:
- June 2, 2026: Node 24 becomes the default runtime.
v4 still works but emits a deprecation warning on every run.
- September 16, 2026: Node 20 is removed.
v4 will stop working unless ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true is set on the runner / workflow (foot-gun; don't do this).
Source: GitHub Actions runner deprecation notice (visible as a warning annotation on every run after June 2):
Node.js 20 actions are deprecated... Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026.
What to do before September 16, 2026
Pick one:
- Upgrade to
actions/upload-artifact@v6.0.0 (Node 24, pre-ESM, no known silent-failure regressions). Single-file change.
- Upgrade to
@v7.x if the silent-failure regression has been fixed by then. Check actions/upload-artifact#806 and similar issues before going to v7.
Recommend option 1 unless v7 issues are resolved.
Other Node-20 actions to audit at the same time
While we're at it, check these for the same Node 20 / Node 24 transition:
dotnet/nbgv@v0.5.1 (already flagged with the same deprecation warning on current builds)
actions/setup-dotnet@v5.0.1 (verify which Node version it runs on)
- Any others surfaced by the deprecation warnings in the next CI run.
Don't lose track
This issue must be resolved before September 16, 2026 or PR CI breaks.
Background
PR #1088 pinned
actions/upload-artifacttov4.6.2(in.github/workflows/ci-build.yml) to avoid an intermittent silent-failure regression onv7(see actions/upload-artifact#806).v4runs on Node.js 20. GitHub is sunsetting Node 20 on the Actions runner:v4still works but emits a deprecation warning on every run.v4will stop working unlessACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=trueis set on the runner / workflow (foot-gun; don't do this).Source: GitHub Actions runner deprecation notice (visible as a warning annotation on every run after June 2):
What to do before September 16, 2026
Pick one:
actions/upload-artifact@v6.0.0(Node 24, pre-ESM, no known silent-failure regressions). Single-file change.@v7.xif the silent-failure regression has been fixed by then. Check actions/upload-artifact#806 and similar issues before going tov7.Recommend option 1 unless
v7issues are resolved.Other Node-20 actions to audit at the same time
While we're at it, check these for the same Node 20 / Node 24 transition:
dotnet/nbgv@v0.5.1(already flagged with the same deprecation warning on current builds)actions/setup-dotnet@v5.0.1(verify which Node version it runs on)Don't lose track
This issue must be resolved before September 16, 2026 or PR CI breaks.