From 369ea843a5b8bf790dbb40079db187f432e0dbad Mon Sep 17 00:00:00 2001 From: Phillip Davis Date: Tue, 30 Jun 2026 19:43:56 +0930 Subject: [PATCH] build: update minimum version of nodejs and yarn We can no longer build with nodejs v14. node-release, one of the dependencies, requires at least nodejs v18. nodejs v22 is the oldest release series that us still supported, but GitHub runners seem to have nodejs 18. So allow nodejs 18 or higher. yarn v1 still has version 1.22.x that works with all current nodejs releases. So require that as a minimum. --- build/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/package.json b/build/package.json index 995373c4d64..771e346ab81 100644 --- a/build/package.json +++ b/build/package.json @@ -51,8 +51,8 @@ "qs": "6.7.3" }, "engines": { - "node": ">= 14.17.0", - "yarn": ">= 1.0.0" + "node": ">= 18.20.0", + "yarn": ">= 1.22.0" }, "scripts": { "clean-modules": "modclean -r --patterns=\"default:safe,owncloud:basic\"",