From 7d6644bdb68c309ef724e9cd975955128a3284ee Mon Sep 17 00:00:00 2001 From: Sander Date: Mon, 18 Aug 2025 15:26:37 +0200 Subject: [PATCH] github-runner: add support for node24 --- modules/services/github-runner/options.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/github-runner/options.nix b/modules/services/github-runner/options.nix index 5152cc4..03cb5cf 100644 --- a/modules/services/github-runner/options.nix +++ b/modules/services/github-runner/options.nix @@ -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. '';