github-runner: Disable node20 runtime by default

Node.js 20 is now EOL, see https://github.com/NixOS/nixpkgs/issues/515284
Remove it from the default list of runtimes, but keep the support around
as long as upstream supports it.
This commit is contained in:
Yuriy Taraday
2026-05-27 19:58:02 +02:00
parent 6ea354b8c1
commit 505e8321d8
2 changed files with 1 additions and 2 deletions
@@ -289,7 +289,6 @@
"node24"
]);
default = [
"node20"
"node24"
];
description = ''
+1 -1
View File
@@ -17,7 +17,7 @@
runtimeShell,
# List of Node.js runtimes the package should support
nodeRuntimes ? [
"node20"
# Node.js 20.x has reached EOL and is marked as insecure in Nixpkgs, thus omitted here
"node24"
],
nodejs_20,