From b3e61ba63fee1f723a26bc54334ee1bda3f7446a Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Mon, 6 May 2024 09:57:32 +0000 Subject: [PATCH] ci: update Renovate configuration: replace `matchPackagePatterns` with `matchDepPatterns` (#55683) This commit addresses a warning in Renovate regarding a deprecated behavior that will be phased out in the future. ``` WARNING: To prevent future issues, replace the usage of matchPackagePatterns with matchDepPatterns (repository=angular/angular, baseBranch=main) "packageRule": { "matchPackagePatterns": ["^@bazel/.*", "^build_bazel.*"], "groupName": "bazel setup", "schedule": ["at any time"] }, "packageName": "bazelbuild/rules_nodejs", "depName": "build_bazel_rules_nodejs" ``` PR Close #55683 --- renovate.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index c8b177e589d..32221ba7c6b 100644 --- a/renovate.json +++ b/renovate.json @@ -50,14 +50,14 @@ ], "packageRules": [ { - "matchPackagePatterns": ["*"], + "matchDepPatterns": ["*"], "matchUpdateTypes": ["minor", "patch"], "groupName": "all non-major dependencies", "schedule": ["after 10:00pm on monday", "before 04:00am on tuesday"] }, { - "matchPackagePatterns": ["^@bazel/.*", "^build_bazel.*"], + "matchDepPatterns": ["^@bazel/.*", "^build_bazel.*"], "groupName": "bazel setup", "schedule": ["at any time"] },