diff --git a/renovate.json b/renovate.json index feca7c2d3..3d6ff5fad 100644 --- a/renovate.json +++ b/renovate.json @@ -28,15 +28,21 @@ "customManagers": [ { "customType": "regex", - "fileMatch": ["\\.cmake$"], + "managerFilePatterns": [ + "/\\.cmake$/" + ], "matchStrings": [ "datasource=(?.*?) depName=(?.*?)( versioning=(?.*?))?\\s*set\\(.*_VERSION\\s*(?.*?)\\)\\s" ] }, { "customType": "regex", - "fileMatch": ["^\\.github/workflows/.+\\.yml$"], - "matchStrings": ["vcpkgGitCommitId:\\s*(?.*?)\\n"], + "managerFilePatterns": [ + "/^\\.github/workflows/.+\\.yml$/" + ], + "matchStrings": [ + "vcpkgGitCommitId:\\s*(?.*?)\\n" + ], "currentValueTemplate": "master", "depNameTemplate": "vcpkg", "packageNameTemplate": "https://github.com/microsoft/vcpkg", @@ -44,8 +50,12 @@ }, { "customType": "regex", - "fileMatch": ["^\\.github/workflows/.+\\.yml$"], - "matchStrings": ["versioning=(?.*?)\\n\\s*repository:\\s*(?.*?)\\n\\s*ref:\\s*(?.*?)\\n"], + "managerFilePatterns": [ + "/^\\.github/workflows/.+\\.yml$/" + ], + "matchStrings": [ + "versioning=(?.*?)\\n\\s*repository:\\s*(?.*?)\\n\\s*ref:\\s*(?.*?)\\n" + ], "datasourceTemplate": "github-tags" } ]