From ccf771f5e06d82f61d3a6146812da55b5d04ded2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 7 May 2025 12:35:23 +0000 Subject: [PATCH] chore(config): migrate config .github/renovate.json --- .github/renovate.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 9bc742f..33d87c5 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -10,7 +10,9 @@ "customManagers": [ { "customType": "regex", - "fileMatch": ["^Dockerfile$"], + "managerFilePatterns": [ + "/^Dockerfile$/" + ], "matchStrings": [ "# renovate: datasource=(?.*?) depName=(?.*?)( versioning=(?.*?))?( registryUrl=(?.*?))?\\sENV\\s+.*?_VERSION=(?.*)\\s" ], @@ -18,7 +20,9 @@ }, { "customType": "regex", - "fileMatch": ["(^|/)\\.github/(?:workflows|actions)/.+\\.ya?ml$"], + "managerFilePatterns": [ + "/(^|/)\\.github/(?:workflows|actions)/.+\\.ya?ml$/" + ], "matchStrings": [ "# renovate: datasource=(?.*?) depName=(?.*?)( versioning=(?.*?))?( registryUrl=(?.*?))?\\s+.*?_VERSION:\\s*(?.*)\\s" ], @@ -26,7 +30,9 @@ }, { "customType": "regex", - "fileMatch": ["(^|/)CMakeLists\\.txt$"], + "managerFilePatterns": [ + "/(^|/)CMakeLists\\.txt$/" + ], "matchStrings": [ "# renovate: datasource=(?.*?) depName=(?.*?)( versioning=(?.*?))?( registryUrl=(?.*?))?\\s+set\\(.*?_VERSION\\s+\"?(?[^ \"\\)]+)\"?\\)\\s" ],