From fe9fb61fe6f9eae7f875de1ecdf914925e761eda Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Mon, 4 Sep 2023 02:59:37 +0200 Subject: [PATCH] ci(renovate): Remove negative lookahead This patch drops the negative lookahead as this is apparently not supported by renovate since it uses re2. References: https://github.com/renovatebot/renovate/discussions/16472 --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index df02d7a97..5d59a732c 100644 --- a/renovate.json +++ b/renovate.json @@ -27,7 +27,7 @@ { "fileMatch": ["Earthfile$"], "matchStrings": [ - "FROM\\s+(?<depName>(?!\\+)[a-z0-9.\\/-]+):?(?<currentValue>[a-z0-9-.]+)?@?(?<currentDigest>sha256:[a-f0-9]+)?" + "FROM\\s+(?<depName>[a-z0-9.\\/-]+):?(?<currentValue>[a-z0-9-.]+)?@?(?<currentDigest>sha256:[a-f0-9]+)?" ], "datasourceTemplate": "docker", "versioningTemplate": "docker" -- GitLab