github-runner: add support for node24 (#1573)

This commit is contained in:
Michael Hoang 2025-09-06 03:51:15 +00:00 committed by GitHub
commit d7c9b35913
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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.
'';