talosctl-image/renovate.json
Marc Plano-Lesay cc8e737f48
Some checks failed
Checking yaml / Run yamllint (pull_request) Failing after 5s
Checking Renovate configuration / validate (pull_request) Successful in 1m29s
Build talosctl+talhelper+sops image (push on main only) / build (push) Successful in 4m49s
Init
2025-11-24 16:35:04 +11:00

54 lines
2 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"enabledManagers": ["custom.regex", "dockerfile"],
"pinDigests": true,
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"#\\s*renovate:\\s*datasource=(?<datasource>[^\\s]+)\\s+depName=(?<depName>[^\\s]+)\\s+versioning=(?<versioning>[^\\s]+)\\nARG\\s+TALOSCTL_VERSION=(?<currentValue>[^\\n]+)"
],
"datasourceTemplate": "{{{datasource}}}",
"depNameTemplate": "{{{depName}}}",
"versioningTemplate": "{{{versioning}}}",
"extractVersionTemplate": "^v?(?<version>.*)$",
"autoReplaceStringTemplate": "ARG TALOSCTL_VERSION={{newValue}}"
},
{
"customType": "regex",
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"#\\s*renovate:\\s*datasource=(?<datasource>[^\\s]+)\\s+depName=(?<depName>[^\\s]+)\\s+versioning=(?<versioning>[^\\s]+)\\nARG\\s+TALHELPER_VERSION=(?<currentValue>[^\\n]+)"
],
"datasourceTemplate": "{{{datasource}}}",
"depNameTemplate": "{{{depName}}}",
"versioningTemplate": "{{{versioning}}}",
"extractVersionTemplate": "^v?(?<version>.*)$",
"autoReplaceStringTemplate": "ARG TALHELPER_VERSION={{newValue}}"
},
{
"customType": "regex",
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"#\\s*renovate:\\s*datasource=(?<datasource>[^\\s]+)\\s+depName=(?<depName>[^\\s]+)\\s+versioning=(?<versioning>[^\\s]+)\\nARG\\s+SOPS_VERSION=(?<currentValue>[^\\n]+)"
],
"datasourceTemplate": "{{{datasource}}}",
"depNameTemplate": "{{{depName}}}",
"versioningTemplate": "{{{versioning}}}",
"extractVersionTemplate": "^v?(?<version>.*)$",
"autoReplaceStringTemplate": "ARG SOPS_VERSION={{newValue}}"
}
],
"packageRules": [
{
"description": "Group all tool bumps into one PR",
"matchManagers": ["custom.regex"],
"groupName": "talos tools versions",
"prPriority": 0
}
]
}