diff --git a/renovate.json5 b/renovate.json5 index 2652f4b..7ac2dee 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -9,19 +9,19 @@ labels: [ 'kind/dependency', ], - "digest": { - "automerge": true + digest: { + automerge: true, }, automergeStrategy: 'squash', 'git-submodules': { - 'enabled': true + enabled: true, }, customManagers: [ { description: 'Gitea-version of https://docs.renovatebot.com/presets-regexManagers/#regexmanagersgithubactionsversions', customType: 'regex', - fileMatch: [ - '.gitea/workflows/.+\\.ya?ml$', + managerFilePatterns: [ + '/.gitea/workflows/.+\\.ya?ml$/', ], matchStrings: [ '# renovate: datasource=(?[a-z-.]+?) depName=(?[^\\s]+?)(?: (?:lookupName|packageName)=(?[^\\s]+?))?(?: versioning=(?[a-z-0-9]+?))?\\s+[A-Za-z0-9_]+?_VERSION\\s*:\\s*["\']?(?.+?)["\']?\\s', @@ -30,17 +30,21 @@ { description: 'Detect helm-unittest yaml schema file', customType: 'regex', - fileMatch: ['.vscode/settings\\.json$'], + managerFilePatterns: [ + '/.vscode/settings\\.json$/', + ], matchStrings: [ 'https:\\/\\/raw\\.githubusercontent\\.com\\/(?[^\\s]+?)\\/(?v[0-9.]+?)\\/schema\\/helm-testsuite\\.json', ], datasourceTemplate: 'github-releases', }, { - 'description': 'Automatically detect new Gitea releases', - 'customType': 'regex', - 'fileMatch': ['(^|/)Chart\\.yaml$'], - 'matchStrings': [ + description: 'Automatically detect new Gitea releases', + customType: 'regex', + managerFilePatterns: [ + '/(^|/)Chart\\.yaml$/', + ], + matchStrings: [ '# renovate datasource=(?\\S+) depName=(?\\S+) extractVersion=(?\\S+)\\nappVersion:\\s?(?\\S+)\\n', ], }, @@ -112,7 +116,9 @@ matchDepNames: [ 'go-gitea/gitea', ], - schedule: ['at any time'], + schedule: [ + 'at any time', + ], }, ], }