Skip to content

Commit 06df1d7

Browse files
committed
ci: replace matchDepPatterns with matchPackageNames
Dev-infra recently upgraded to Renovate version 38. This update causes `matchDepPatterns` to only accept RegExp. Since we require a glob pattern, we will now use `matchPackageNames`, which supports glob patterns and is already used in the configuration.
1 parent 636cb69 commit 06df1d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

renovate.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"packages/angular_devkit/schematics_cli/schematic/files/package.json",
5858
"packages/schematics/angular/utility/latest-versions/package.json"
5959
],
60-
"matchDepPatterns": ["*"],
60+
"matchPackageNames": ["*"],
6161
"groupName": "schematics dependencies",
6262
"groupSlug": "all-schematics-dependencies",
6363
"lockFileMaintenance": { "enabled": false }
@@ -69,14 +69,14 @@
6969
"!packages/schematics/angular/utility/latest-versions/package.json"
7070
],
7171
"excludePackagePatterns": ["^@angular/.*", "angular/dev-infra"],
72-
"matchDepPatterns": ["*"],
72+
"matchPackageNames": ["*"],
7373
"matchUpdateTypes": ["minor", "patch"],
7474
"groupName": "all non-major dependencies",
7575
"groupSlug": "all-minor-patch"
7676
},
7777
{
7878
"matchPaths": [".github/workflows/scorecard.yml"],
79-
"matchDepPatterns": ["*"],
79+
"matchPackageNames": ["*"],
8080
"groupName": "scorecard action dependencies",
8181
"groupSlug": "scorecard-action"
8282
}

0 commit comments

Comments
 (0)