From f9a233b4ec028c8510e094b212c0d7572f8a1ea1 Mon Sep 17 00:00:00 2001 From: Nadia Santalla Date: Mon, 14 Oct 2024 14:58:50 +0200 Subject: [PATCH] renovate: fix regex for self-updating --- .github/renovate.json5 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 04306cb3..1b3c8458 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -86,8 +86,8 @@ "^\\.github/workflows/.*\\.ya?ml$", ], "matchStrings": [ - "renovate-version: (?\\S+)", - "RENOVATE_IMAGE=ghcr.io/renovatebot/renovate:(?\\S+)" + "renovate-version: (?[^@\\s]+)(?:@(?\\S+))?", + "RENOVATE_IMAGE=ghcr.io/renovatebot/renovate:(?[^@\\s]+)(?:@(?\\S+))?" ] } ],