From 16572ede96bcd30f45c730732db9078e17609de0 Mon Sep 17 00:00:00 2001 From: OpenVPN Renovate Date: Thu, 16 Oct 2025 10:47:32 +0000 Subject: [PATCH] chore(config): migrate config renovate.json --- renovate.json | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/renovate.json b/renovate.json index fd6d3098c..0f9b033ae 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" } ]