From a00062ba6459cafb77ec04cfbe362fbb082ec2e6 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Mon, 16 Feb 2026 13:34:05 -0600 Subject: [PATCH] build: fix regex pattern that was bad in docs (#3943) --- renovate.json5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json5 b/renovate.json5 index dea3c849..4064b52d 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -8,7 +8,7 @@ "customType": "regex", "managerFilePatterns": ["/^Dockerfile$/"], "matchStrings": [ - "# renovate: datasource=(?[a-z-]+?)(?: packageName=(?.+?))? (?: versioning=(?[a-z-]+?))?\\s(?:ENV|ARG) .+?_VERSION=(?.+?)\\s" + "# renovate: datasource=(?[a-z-]+?)(?: packageName=(?.+?))?(?: versioning=(?[a-z-]+))?\\s(?:ENV|ARG) .+?_VERSION=(?.+?)\\s" ] } ]