From b7ef8fd924bf11baddbe89e4cc60c58d970b2cf4 Mon Sep 17 00:00:00 2001 From: kolea2 <45548808+kolea2@users.noreply.github.com> Date: Wed, 12 Apr 2023 10:06:40 -0400 Subject: [PATCH] chore: fix regex for file matching in renovate config (#1689) --- renovate.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 7494258c9a..1a35d44a72 100644 --- a/renovate.json +++ b/renovate.json @@ -80,13 +80,13 @@ ], "regexManagers": [ { - "fileMatch": ["^pom\\.xml$"], + "fileMatch": ["^.*\/pom\\.xml$"], "matchStrings": ["\\(?.*?)\\<\\/grpc\\.version\\>"], "depNameTemplate": "io.grpc:protoc-gen-grpc-java", "datasourceTemplate": "maven" }, { - "fileMatch": ["^pom\\.xml$"], + "fileMatch": ["^.*\/pom\\.xml$"], "matchStrings": ["\\(?.*?)\\<\\/protobuf\\.version\\>"], "depNameTemplate": "com.google.protobuf:protoc", "datasourceTemplate": "maven"