diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 29c6626..d541dd6 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -19,18 +19,16 @@ automerge: true, }, { - "matchDepTypes": [ - "action" - ], - "pinDigests": true, - "automerge": true - } + matchDepTypes: ["action"], + pinDigests: true, + automerge: true, + }, ], customManagers: [ { description: "Update semantic-release in GitHub Action workflows", customType: "regex", - fileMatch: ["^\\.github\\/(actions|workflows)\\/.+\\.ya?ml$"], + managerFilePatterns: ["/^\\.github\\/(actions|workflows)\\/.+\\.ya?ml$/"], matchStrings: [ "semantic_version\\s*:\\s*(\"|')?(?.+)(\"|'|(\\s+)|\\n|$)", ], @@ -40,9 +38,9 @@ { description: "Update conventional-changelog-conventionalcommits in GitHub Action workflows", customType: "regex", - fileMatch: ["^\\.github\\/(actions|workflows)\\/.+\\.ya?ml$"], + managerFilePatterns: ["/^\\.github\\/(actions|workflows)\\/.+\\.ya?ml$/"], matchStrings: [ - ".*(?conventional-changelog-conventionalcommits)@(?.+?)(\"|\'|(\\s+)|\\n|$)", + ".*(?conventional-changelog-conventionalcommits)@(?.+?)(\"|'|(\\s+)|\\n|$)", ], datasourceTemplate: "npm", depNameTemplate: "conventional-changelog-conventionalcommits", @@ -50,7 +48,7 @@ { description: "Update packer dependencies.", customType: "regex", - fileMatch: ["\\.pkr\\.hcl"], + managerFilePatterns: ["/\\.pkr\\.hcl/"], matchStrings: [ 'required_version[\\s]+=[\\s]+"=?(?\\S*)"', 'source[\\s]+=[\\s]+"github.com/(?\\S*)"[\\s]+version[\\s]+=[\\s]+"(?\\S*)"',