github-runner: add support for node24

(cherry picked from commit 7d6644bdb6)
This commit is contained in:
Sander
2025-10-03 15:19:34 +02:00
committed by Yuriy Taraday
parent 1fef4404de
commit 7f5c0626a0
+2 -2
View File
@@ -262,8 +262,8 @@ in
};
nodeRuntimes = mkOption {
type = with types; nonEmptyListOf (enum [ "node20" ]);
default = [ "node20" ];
type = with types; nonEmptyListOf (enum [ "node20" "node24" ]);
default = [ "node20" "node24" ];
description = ''
List of Node.js runtimes the runner should support.
'';