From afe6ef22cdae67f6aff852f347e211834db4bf2a Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Mon, 16 Mar 2026 18:06:03 -0500 Subject: [PATCH] Make `check_modules.pl` check for node version 20 or newer. Node 18 is deprecated, and our dependencies now require node 20 or newer. --- bin/check_modules.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/check_modules.pl b/bin/check_modules.pl index 91d7d1e890..e13ebfaa68 100755 --- a/bin/check_modules.pl +++ b/bin/check_modules.pl @@ -30,7 +30,7 @@ =head1 SYNOPSIS =item C Tested on ubuntu 24. May work for other distributions using the apt package -manager +manager =item C @@ -746,8 +746,8 @@ sub check_apps { my $node_version_str = qx/node -v/; my ($node_version) = $node_version_str =~ m/v(\d+)\./; - say "\n**The version of node should be at least 18. You have version $node_version." - if $node_version < 18; + say "\n**The version of node should be at least 20. You have version $node_version." + if $node_version < 20; return; }