chore(renovate): fix config

This commit is contained in:
Michael Kriese 2025-01-30 12:09:02 +01:00
parent 096cb75589
commit 438f76b7e5
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: F8D7748549A5986A

View file

@ -3,26 +3,29 @@
"extends": ["local>actions/renovate-config"],
"customManagers": [
{
"customType": "regex",
"description": "update runner in RUNNER_VERSION",
"fileMatch": ["RUNNER_VERSION"],
"fileMatch": ["^RUNNER_VERSION$"],
"matchStrings": ["^(?<currentValue>v\\d+\\.\\d+\\.\\d+)$"],
"datasourceTemplate": "docker",
"depNameTemplate": "data.forgejo.org/forgejo/runner"
},
{
"customType": "regex",
"description": "update runner in README.md",
"fileMatch": ["README.md"],
"fileMatch": ["^README.md$"],
"matchStrings": [
"| runner-version | .+? | (?<currentValue>v\\d+\\.\\d+\\.\\d+) |"
"\\| runner-version \\| .+? \\| (?<currentValue>v\\d+\\.\\d+\\.\\d+) \\|"
],
"datasourceTemplate": "docker",
"depNameTemplate": "data.forgejo.org/forgejo/runner"
},
{
"customType": "regex",
"description": "update runner in action.yml",
"fileMatch": ["action.yml"],
"fileMatch": ["^action.yml$"],
"matchStrings": [
"\\s+runner-version:\\s+description: .+?\\s+default: (?<currentValue>v\\d+\\.\\d+\\.\\d+)\\s"
"\\s+runner-version:\\s+description: .+?\\s+default: '(?<currentValue>v\\d+\\.\\d+\\.\\d+)'\\s"
],
"datasourceTemplate": "docker",
"depNameTemplate": "data.forgejo.org/forgejo/runner"