ci: replace `matchCurrentVersion` RegExp negate with semver version (#41886)

While RegExp negation should work as per documentation https://docs.renovatebot.com/configuration-options/#matchcurrentversion it appears that in this case it is not working. See the following commit 076f13da86, therefore we work around this by using a semver version that excludes anything which doesn't match `>= 1`.

PR Close #41886
This commit is contained in:
Alan Agius 2021-04-29 20:25:17 +02:00 committed by Misko Hevery
parent e53c80c7ca
commit 77d920e461
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@
"minor",
"patch"
],
"matchCurrentVersion": "!/^0\\./",
"matchCurrentVersion": ">=1",
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch",
"schedule": [