mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-19 16:09:19 +03:00
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:
parent
782b164523
commit
3f13f8d85e
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ with lib;
|
|||
};
|
||||
|
||||
nodeRuntimes = mkOption {
|
||||
type = with types; nonEmptyListOf (enum [ "node16" "node20" ]);
|
||||
type = with types; nonEmptyListOf (enum [ "node20" ]);
|
||||
default = [ "node20" ];
|
||||
description = mdDoc ''
|
||||
List of Node.js runtimes the runner should support.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue