diff --git a/renovate.json b/renovate.json index fd21ee6e..985389d8 100644 --- a/renovate.json +++ b/renovate.json @@ -21,8 +21,12 @@ ] }, { - "matchManagers": ["gomod"], - "matchDepTypes": ["indirect"], + "matchManagers": [ + "gomod" + ], + "matchDepTypes": [ + "indirect" + ], "enabled": true }, { @@ -58,7 +62,9 @@ "customManagers": [ { "customType": "regex", - "fileMatch": ["."], + "managerFilePatterns": [ + "/./" + ], "matchStrings": [ "[\\t ]*(?:#|//) ?renovate: (?git-refs)=(?\\S+)(?: branch=(?\\S+))?[\\t ]*\\r?\\n.+?[:=][\\t ]*[\"']?(?[a-f0-9]+)[\"']?", "[\\t ]*(?:#|//) ?renovate: (?[^=]+)=(?\\S+)(?: registry=(?\\S+))?(?: versioning=(?\\S+))?[\\t ]*\\r?\\n.+?[:=][\\t ]*[\"']?(?[^@\\s\"'=]+)(?:@(?sha256:[a-f0-9]+))?[\"']?" @@ -69,9 +75,9 @@ }, { "customType": "regex", - "fileMatch": [ - "Makefile", - "(^|/).+\\.go" + "managerFilePatterns": [ + "/Makefile/", + "/(^|/).+\\.go/" ], "matchStrings": [ "go run (?\\S+)@(?\\S+)" @@ -80,8 +86,8 @@ }, { "customType": "regex", - "fileMatch": [ - "(^|/).+\\.yaml$" + "managerFilePatterns": [ + "/(^|/).+\\.yaml$/" ], "matchStrings": [ "[\\t ]*image:[\\t ]*\\r?\\n[\\t ]*registry:[\\t ]*[\"']?(?.*?)[\"']?[\\t ]*\\r?\\n[\\t ]*(?:repository|name):[\\t ]*[\"']?(?.*?)[\"']?[\\t ]*\\r?\\n[\\t ]*tag:[\\t ]*[\"']?(?[\\w\\.+-]*)(?:@(?sha256:[a-f0-9]+))?[\"']?",