From 7e6d3cfbddcd3b4d96e9f0fd220aac35589a7a09 Mon Sep 17 00:00:00 2001 From: Jacob Kauffmann Date: Wed, 3 Sep 2025 14:55:55 -0600 Subject: [PATCH] chore(ci): Bump Nix Shell's Node.js from 18 to 20 --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index bb0ad9606d..db189a14cf 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,7 @@ { pkgs ? import {} }: pkgs.mkShell { nativeBuildInputs = with pkgs; [ - nodejs-18_x + nodejs_20 nodePackages.npm ]; }