From 92648cd2a1f11c5162bba5c1abadbc00fff6a123 Mon Sep 17 00:00:00 2001 From: Alex Cook Date: Tue, 3 Feb 2026 20:05:06 -0500 Subject: [PATCH 1/3] fix: try semver-coerced to get correct matching --- .github/renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 6fe2a0f5527b..2f8671d584f0 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -27,13 +27,14 @@ "datasourceTemplate": "github-releases", "depNameTemplate": "bazelbuild/bazel" }, - { +{ "description": "Update JDK_EA_BUILD in GitHub Actions", "fileMatch": ["^\\.github/workflows/ci\\.yml$"], "matchStrings": [ "JDK_EA_MAJOR: \"(?\\d+)\"[\\s\\S]*?JDK_EA_BUILD: \"(?\\d+)\"" ], "datasourceTemplate": "github-tags", + "versioningTemplate": "semver-coerced", "depNameTemplate": "adoptium/temurin{{{major}}}-binaries", "extractVersionTemplate": "^jdk-\\d+\\+(?\\d+).*$" } From 1ce25893fed679c3c7174465beb7d07c29c17fc7 Mon Sep 17 00:00:00 2001 From: Alex Cook Date: Tue, 3 Feb 2026 20:23:39 -0500 Subject: [PATCH 2/3] fix: try setting ignore unstable to false and switch to github releases --- .github/renovate.json | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 2f8671d584f0..45db38bb09cc 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -9,6 +9,10 @@ ], "timezone": "America/Los_Angeles", "packageRules": [ + { + "matchPackagePatterns": ["^adoptium/temurin\\d+-binaries$"], + "ignoreUnstable": false + }, { "matchPackageNames": ["com.amazonaws:aws-java-sdk-bom"], "schedule": ["before 3am on the first day of the month"] @@ -27,16 +31,15 @@ "datasourceTemplate": "github-releases", "depNameTemplate": "bazelbuild/bazel" }, -{ + { "description": "Update JDK_EA_BUILD in GitHub Actions", "fileMatch": ["^\\.github/workflows/ci\\.yml$"], "matchStrings": [ - "JDK_EA_MAJOR: \"(?\\d+)\"[\\s\\S]*?JDK_EA_BUILD: \"(?\\d+)\"" + "JDK_EA_MAJOR:\\s+\"(?\\d+)\"[\\s\\S]*?JDK_EA_BUILD:\\s+\"(?\\d+)\"" ], - "datasourceTemplate": "github-tags", - "versioningTemplate": "semver-coerced", + "datasourceTemplate": "github-releases", + "versioningTemplate": "loose", "depNameTemplate": "adoptium/temurin{{{major}}}-binaries", - "extractVersionTemplate": "^jdk-\\d+\\+(?\\d+).*$" - } - ] + "extractVersionTemplate": "^jdk-\\d+\\+(?\\d+)" + } ] } From 77b867661976fe8022d3765a92f42c0a15aa1cf7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 6 Feb 2026 11:52:17 +0000 Subject: [PATCH 3/3] chore(deps): update plugin de.undercouch.download to v5.7.0 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d64dccd56d8d..cf092196e227 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ plugins { // https://plugins.gradle.org/plugin/com.gradleup.shadow id 'com.gradleup.shadow' version '8.3.8' // https://plugins.gradle.org/plugin/de.undercouch.download - id 'de.undercouch.download' version '5.6.0' + id 'de.undercouch.download' version '5.7.0' id 'java' // https://github.com/tbroyer/gradle-errorprone-plugin id 'net.ltgt.errorprone' version '5.0.0'