Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 19 additions & 17 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"/^.kokoro/nightly/graalvm-native.*.cfg$/",
"/^.kokoro/presubmit/graalvm-native.*.cfg$/",
"/^.kokoro/presubmit/*-graalvm-native-presubmit.cfg$/",
"/^.kokoro/nightly/graalvm-sub-jobs/native.*/common.cfg$/",
"/^owl-bot-postprocessor/synthtool/gcp/templates/java-library/.kokoro/presubmit/graalvm-native.*.cfg$/"
"managerFilePatterns": [
"//^.kokoro/nightly/graalvm-native.*.cfg$//",
"//^.kokoro/presubmit/graalvm-native.*.cfg$//",
"//^.kokoro/presubmit/*-graalvm-native-presubmit.cfg$//",
"//^.kokoro/nightly/graalvm-sub-jobs/native.*/common.cfg$//",
"//^owl-bot-postprocessor/synthtool/gcp/templates/java-library/.kokoro/presubmit/graalvm-native.*.cfg$//"
],
Comment on lines +66 to 72

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The automated migration has incorrectly wrapped the regex patterns in double slashes (//...//) instead of single slashes (/.../). This will prevent Renovate from matching the target files correctly. Please use single slashes.

Suggested change
"managerFilePatterns": [
"//^.kokoro/nightly/graalvm-native.*.cfg$//",
"//^.kokoro/presubmit/graalvm-native.*.cfg$//",
"//^.kokoro/presubmit/*-graalvm-native-presubmit.cfg$//",
"//^.kokoro/nightly/graalvm-sub-jobs/native.*/common.cfg$//",
"//^owl-bot-postprocessor/synthtool/gcp/templates/java-library/.kokoro/presubmit/graalvm-native.*.cfg$//"
],
"managerFilePatterns": [
"/^.kokoro/nightly/graalvm-native.*.cfg$/",
"/^.kokoro/presubmit/graalvm-native.*.cfg$/",
"/^.kokoro/presubmit/*-graalvm-native-presubmit.cfg$/",
"/^.kokoro/nightly/graalvm-sub-jobs/native.*/common.cfg$/",
"/^owl-bot-postprocessor/synthtool/gcp/templates/java-library/.kokoro/presubmit/graalvm-native.*.cfg$/"
],

"matchStrings": [
"value: \"gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform.*:(?<currentValue>.*?)\""
Expand All @@ -78,11 +78,11 @@
},
{
"customType": "regex",
"fileMatch": [
"/java-dns/README.md/",
"/java-notification/README.md/",
"/java-samples/native-image-sample/pom.xml/",
"/java-vertexai/README.md/"
"managerFilePatterns": [
"//java-dns/README.md//",
"//java-notification/README.md//",
"//java-samples/native-image-sample/pom.xml//",
"//java-vertexai/README.md//"
],
Comment on lines +81 to 86

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The automated migration has incorrectly wrapped the regex patterns in double slashes (//...//) instead of single slashes (/.../). This will prevent Renovate from matching the target files correctly. Please use single slashes.

Suggested change
"managerFilePatterns": [
"//java-dns/README.md//",
"//java-notification/README.md//",
"//java-samples/native-image-sample/pom.xml//",
"//java-vertexai/README.md//"
],
"managerFilePatterns": [
"/java-dns/README.md/",
"/java-notification/README.md/",
"/java-samples/native-image-sample/pom.xml/",
"/java-vertexai/README.md/"
],

"matchStrings": [
"<artifactId>libraries-bom</artifactId>\\s+<version>(?<currentValue>.*?)</version>"
Expand All @@ -92,9 +92,9 @@
},
{
"customType": "regex",
"fileMatch": [
"/.github/workflows/ci.yaml/",
"/.github/workflows/generated_files_sync.yaml/"
"managerFilePatterns": [
"//.github/workflows/ci.yaml//",
"//.github/workflows/generated_files_sync.yaml//"
],
Comment on lines +95 to 98

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The automated migration has incorrectly wrapped the regex patterns in double slashes (//...//) instead of single slashes (/.../). This will prevent Renovate from matching the target files correctly. Please use single slashes.

Suggested change
"managerFilePatterns": [
"//.github/workflows/ci.yaml//",
"//.github/workflows/generated_files_sync.yaml//"
],
"managerFilePatterns": [
"/.github/workflows/ci.yaml/",
"/.github/workflows/generated_files_sync.yaml/"
],

"matchStrings": [
"library_generation_image_tag\\s*:\\s*(?<currentValue>.*?)\\n"
Expand All @@ -104,8 +104,8 @@
},
{
"customType": "regex",
"fileMatch": [
"/^.github/workflows/unmanaged_dependency_check.yaml$/"
"managerFilePatterns": [
"//^.github/workflows/unmanaged_dependency_check.yaml$//"
],
Comment on lines +107 to 109

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The automated migration has incorrectly wrapped the regex patterns in double slashes (//...//) instead of single slashes (/.../). This will prevent Renovate from matching the target files correctly. Please use single slashes.

Suggested change
"managerFilePatterns": [
"//^.github/workflows/unmanaged_dependency_check.yaml$//"
],
"managerFilePatterns": [
"/^.github/workflows/unmanaged_dependency_check.yaml$/"
],

"matchStrings": [
"uses: googleapis/sdk-platform-java/java-shared-dependencies/unmanaged-dependency-check@google-cloud-shared-dependencies/v(?<currentValue>.+?)\\n"
Expand All @@ -115,7 +115,9 @@
},
{
"customType": "regex",
"fileMatch": ["sdk-platform-java/dependencies.txt"],
"managerFilePatterns": [
"/sdk-platform-java/dependencies.txt/"
],
"matchStrings": ["(?<depName>.*),(.*)=(?<currentValue>.*)"],
"datasourceTemplate": "maven"
}
Expand Down
Loading