From bca9467fa2b1448c4c89c0ae523c47d403bd5d17 Mon Sep 17 00:00:00 2001 From: Adam Cmiel Date: Mon, 19 Aug 2024 17:34:34 +0200 Subject: [PATCH] renovate: fix regex pattern for buildah image We previously enabled a customManager for the buildah image used in buildah-remote (in e49a405ee38019dfa39abe66b2d85684efe881c0). Since then, the name of the buildah image has changed to 'buildah-task', so the updates stopped working. Make the regex more general. Signed-off-by: Adam Cmiel --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 022bbff2f9..2487ff9f3f 100644 --- a/renovate.json +++ b/renovate.json @@ -84,7 +84,7 @@ "customType": "regex", "fileMatch": ["^task/[\\w-]+/[0-9.]+/[\\w-]\\.yaml$"], "matchStrings": [ - "value: (?quay\\.io/konflux-ci/buildah):(?latest)@(?sha256:[a-f0-9]{64})" + "value: (?quay\\.io/konflux-ci/buildah[^:]*):(?[^@]*)@(?sha256:[a-f0-9]{64})" ], "autoReplaceStringTemplate": "value: {{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasourceTemplate": "docker"