Skip to content

Commit

Permalink
chore: fix regex for file matching in renovate config (#1689)
Browse files Browse the repository at this point in the history
  • Loading branch information
kolea2 committed Apr 12, 2023
1 parent 392fc69 commit b7ef8fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions renovate.json
Expand Up @@ -80,13 +80,13 @@
],
"regexManagers": [
{
"fileMatch": ["^pom\\.xml$"],
"fileMatch": ["^.*\/pom\\.xml$"],
"matchStrings": ["\\<grpc\\.version>(?<currentValue>.*?)\\<\\/grpc\\.version\\>"],
"depNameTemplate": "io.grpc:protoc-gen-grpc-java",
"datasourceTemplate": "maven"
},
{
"fileMatch": ["^pom\\.xml$"],
"fileMatch": ["^.*\/pom\\.xml$"],
"matchStrings": ["\\<protobuf\\.version>(?<currentValue>.*?)\\<\\/protobuf\\.version\\>"],
"depNameTemplate": "com.google.protobuf:protoc",
"datasourceTemplate": "maven"
Expand Down

0 comments on commit b7ef8fd

Please sign in to comment.