From b06288518c43f2eed752a0949efb306bfbc79978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Mart=C3=ADn?= Date: Wed, 4 Jun 2025 09:46:27 +0200 Subject: [PATCH] Use patch/build instead of minor/patch in 'versioningTemplate' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit According to the documentation 'build' can be used after 'major', 'minor' and 'patch' have been already used and a fourth version part is needed. On the other hand, it's only mandatory to use at least one of 'major', 'minor' or 'patch'. We are using 'patch' and 'build' in compose-images so this change is to make the versioning consistent among both projects. Signed-off-by: Miguel Martín --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index f5b8547..e7fb92b 100644 --- a/renovate.json +++ b/renovate.json @@ -49,7 +49,7 @@ "REPOS_IMAGE=(?.*):(?.*)@(?.*)\\n", "BUILDER_IMAGE=(?.*):(?.*)@(?.*)\\n" ], - "versioningTemplate": "regex:(?.*)-(?\\d{8})(\\.n)?\\.(?\\d)", + "versioningTemplate": "regex:(?.*)-(?\\d{8})(\\.n)?\\.(?\\d)", "datasourceTemplate": "docker" } ],