diff --git a/.github/renovate.json b/.github/renovate.json index 6fe2a0f5527b..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"] @@ -31,11 +35,11 @@ "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", + "datasourceTemplate": "github-releases", + "versioningTemplate": "loose", "depNameTemplate": "adoptium/temurin{{{major}}}-binaries", - "extractVersionTemplate": "^jdk-\\d+\\+(?\\d+).*$" - } - ] + "extractVersionTemplate": "^jdk-\\d+\\+(?\\d+)" + } ] } 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'