From 2acdeb347881768926e113a0215e3f52d4ef023d Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Tue, 18 Mar 2025 21:20:15 -0400 Subject: [PATCH] build: update development Node.js version to 22.14.0 and auto-update The version of Node.js used for development and CI jobs is now set to the active LTS version's latest minor and patch. Renovate is also now configured to update the minor and patch versions once a week. --- .nvmrc | 2 +- renovate.json | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.nvmrc b/.nvmrc index d4b7699d36ca..7d41c735d712 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -20.18.1 +22.14.0 diff --git a/renovate.json b/renovate.json index 7fca84fadc0e..456adebbdb02 100644 --- a/renovate.json +++ b/renovate.json @@ -20,9 +20,19 @@ "package.json", "packages/**/package.json", "tests/legacy-cli/e2e/ng-snapshot/package.json", - ".github/workflows/**/*.yml" + ".github/workflows/**/*.yml", + ".nvmrc" ], "packageRules": [ + { + "matchDepNames": ["node"], + "matchUpdateTypes": ["minor", "patch"] + }, + { + "enabled": false, + "matchDepNames": ["node"], + "matchUpdateTypes": ["major"] + }, { "matchPackageNames": ["quicktype-core"], "schedule": ["before 4:00am on the first day of the month"]