This is an automated email from the ASF dual-hosted git repository.
jacopoc pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push:
new 5b801bc742 Fixed: Bump Node.js version from 20.19.0 to 24.16.0
5b801bc742 is described below
commit 5b801bc742163c97793de76b332456429306ffce
Author: Jacopo Cappellato <[email protected]>
AuthorDate: Thu May 28 15:29:04 2026 +0200
Fixed: Bump Node.js version from 20.19.0 to 24.16.0
Node.js 20 reached its official End-of-Life (EOL) on April 30, 2026
---
buildSrc/src/main/groovy/ofbiz-node-conventions.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/buildSrc/src/main/groovy/ofbiz-node-conventions.gradle
b/buildSrc/src/main/groovy/ofbiz-node-conventions.gradle
index 26a578404f..66d623279d 100644
--- a/buildSrc/src/main/groovy/ofbiz-node-conventions.gradle
+++ b/buildSrc/src/main/groovy/ofbiz-node-conventions.gradle
@@ -42,7 +42,7 @@ plugins {
node {
download = true
- version = "20.19.0"
+ version = "24.16.0"
// If environment variable CI is set, use 'npm ci' instead of 'npm
install' to populate node_modules.
npmInstallCommand = System.getenv("CI") ? 'ci' : 'install'