nixos/github-runners: align nodeRuntimes option with package
The `github-runner` package only supports `nodejs_20` since `nodejs_16`
was removed in a2976db919.
It still makes sense to keep the `nodeRuntimes` option as this is
probably not the last Node.js we'll deprecate with at least some grace
period.
This commit is contained in:
@@ -230,7 +230,7 @@ with lib;
|
|||||||
};
|
};
|
||||||
|
|
||||||
nodeRuntimes = mkOption {
|
nodeRuntimes = mkOption {
|
||||||
type = with types; nonEmptyListOf (enum [ "node16" "node20" ]);
|
type = with types; nonEmptyListOf (enum [ "node20" ]);
|
||||||
default = [ "node20" ];
|
default = [ "node20" ];
|
||||||
description = mdDoc ''
|
description = mdDoc ''
|
||||||
List of Node.js runtimes the runner should support.
|
List of Node.js runtimes the runner should support.
|
||||||
|
|||||||
Reference in New Issue
Block a user