diff --git a/.github/renovate.json b/.github/renovate.json index dc5fe41..9d5a00c 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -4,18 +4,23 @@ "github>scop/common", ], "pip_requirements": { - "fileMatch": ["(^|/)requirements[\\w-]*\\.txt$"] + "managerFilePatterns": [ + "/(^|/)requirements[\w-]*\.txt$/" + ] }, - "regexManagers": [ + "customManagers": [ { - "fileMatch": ["^\\.pre-commit-config\\.yaml$"], - "matchStrings": ["(?[\\w-]+)(?==[a-z0-9.]+)"], + "customType": "regex", + "managerFilePatterns": ["/^\.pre-commit-config\.yaml$/"], + "matchStrings": ["(?[\w-]+)(?==[a-z0-9.]+)"], "datasourceTemplate": "pypi" } ], "packageRules": [ { - "matchFiles": ["requirements-test.txt"], + "matchFileNames": [ + "requirements-test.txt" + ], "semanticCommitType": "test" }, { @@ -24,14 +29,18 @@ "semanticCommitScope": "pre-commit" }, { - "matchPackagePatterns": ["(^|/)gitlint$"], "groupName": "gitlint", - "versioning": "pep440" + "versioning": "pep440", + "matchPackageNames": [ + "/(^|/)gitlint$/" + ] }, { - "matchPackagePatterns": ["(^|/)ruff(-pre-commit)?$"], "groupName": "ruff", - "versioning": "pep440" + "versioning": "pep440", + "matchPackageNames": [ + "/(^|/)ruff(-pre-commit)?$/" + ] } ] }