balena-cli: pin to NodeJS 24 to avoid incompatible NodeJS version warning (#505264)

This commit is contained in:
Doron Behar
2026-03-31 12:24:42 +00:00
committed by GitHub
+3 -3
View File
@@ -3,7 +3,7 @@
stdenv,
buildNpmPackage,
fetchFromGitHub,
nodejs_latest,
nodejs_24,
versionCheckHook,
node-gyp,
python3,
@@ -13,10 +13,10 @@
let
buildNpmPackage' = buildNpmPackage.override {
nodejs = nodejs_latest;
nodejs = nodejs_24;
};
node-gyp' = node-gyp.override {
nodejs = nodejs_latest;
nodejs = nodejs_24;
};
in
buildNpmPackage' rec {