0
0
mirror of https://github.com/thegeeklab/renovate-presets.git synced 2024-11-23 05:30:40 +00:00

fix(docker): fix multi match in custom manager for container envs

This commit is contained in:
Robert Kaussow 2024-10-27 13:27:12 +01:00
parent a9c9027497
commit 7747ee1e08
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0

View File

@ -52,7 +52,7 @@
], ],
"matchStrings": [ "matchStrings": [
"# renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>.*?))?\\nENV .*?_VERSION=\"\\${.*:-(?<currentValue>.*)}\"\\s", "# renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>.*?))?\\nENV .*?_VERSION=\"\\${.*:-(?<currentValue>.*)}\"\\s",
"# renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>.*?))?\\nENV .*?_VERSION=\"?(?<currentValue>.*)\"?" "# renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>.*?))?\\nENV .*?_VERSION=\"?(?<currentValue>[^${}\"\\s]+)\"?"
] ]
} }
] ]