github-runner: add support for node24

Fixes #434372
This commit is contained in:
Spencer Janssen
2025-08-16 23:32:27 -05:00
parent 3497579b93
commit 19a7b08ea7
2 changed files with 28 additions and 4 deletions

View File

@@ -256,8 +256,16 @@
};
nodeRuntimes = lib.mkOption {
type = with lib.types; nonEmptyListOf (enum [ "node20" ]);
default = [ "node20" ];
type =
with lib.types;
nonEmptyListOf (enum [
"node20"
"node24"
]);
default = [
"node20"
"node24"
];
description = ''
List of Node.js runtimes the runner should support.
'';