Skip to content
Snippets Groups Projects
Verified Commit fe9fb61f authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

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
parent a44ba3cc
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
{ {
"fileMatch": ["Earthfile$"], "fileMatch": ["Earthfile$"],
"matchStrings": [ "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", "datasourceTemplate": "docker",
"versioningTemplate": "docker" "versioningTemplate": "docker"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment