From 156fec3be808300f50d3562d48f703a3d2ddc37f Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 5 May 2025 05:56:41 +0000 Subject: [PATCH] Migrate renovate config (#367) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Renovate config in this repository needs migrating. Typically this is because one or more configuration options you are using have been renamed. You don't need to merge this PR right away, because Renovate will continue to migrate these fields internally each time it runs. But later some of these fields may be fully deprecated and the migrations removed. So it's a good idea to merge this migration PR soon. 🔕 **Ignore**: Close this PR and you won't be reminded about config migration again, but one day your current config may no longer be valid. ❓ Got questions? Does something look wrong to you? Please don't hesitate to [request help here](https://github.com/renovatebot/renovate/discussions). --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://code.forgejo.org/actions/setup-forgejo/pulls/367 Reviewed-by: earl-warren Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- renovate.json | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/renovate.json b/renovate.json index a5517b0..b668edf 100644 --- a/renovate.json +++ b/renovate.json @@ -1,12 +1,18 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["local>actions/renovate-config"], + "extends": [ + "local>actions/renovate-config" + ], "customManagers": [ { "customType": "regex", "description": "update runner in RUNNER_VERSION", - "fileMatch": ["^RUNNER_VERSION$"], - "matchStrings": ["(?v\\d+\\.\\d+\\.\\d+)"], + "managerFilePatterns": [ + "/^RUNNER_VERSION$/" + ], + "matchStrings": [ + "(?v\\d+\\.\\d+\\.\\d+)" + ], "datasourceTemplate": "gitea-tags", "depNameTemplate": "forgejo/runner", "versioningTemplate": "semver", @@ -15,7 +21,9 @@ { "customType": "regex", "description": "update runner in README.md", - "fileMatch": ["^README.md$"], + "managerFilePatterns": [ + "/^README.md$/" + ], "matchStrings": [ "\\| runner-version \\| .+? \\| (?v\\d+\\.\\d+\\.\\d+) \\|" ], @@ -27,7 +35,9 @@ { "customType": "regex", "description": "update runner in action.yml", - "fileMatch": ["^action.yml$"], + "managerFilePatterns": [ + "/^action.yml$/" + ], "matchStrings": [ "\\s+runner-version:\\s+description: .+?\\s+default: '(?v\\d+\\.\\d+\\.\\d+)'\\s" ],