Skip to content
Open
Show file tree
Hide file tree
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
14 changes: 9 additions & 5 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -31,11 +35,11 @@
"description": "Update JDK_EA_BUILD in GitHub Actions",
"fileMatch": ["^\\.github/workflows/ci\\.yml$"],
"matchStrings": [
"JDK_EA_MAJOR: \"(?<major>\\d+)\"[\\s\\S]*?JDK_EA_BUILD: \"(?<currentValue>\\d+)\""
"JDK_EA_MAJOR:\\s+\"(?<major>\\d+)\"[\\s\\S]*?JDK_EA_BUILD:\\s+\"(?<currentValue>\\d+)\""
],
"datasourceTemplate": "github-tags",
"datasourceTemplate": "github-releases",
"versioningTemplate": "loose",
"depNameTemplate": "adoptium/temurin{{{major}}}-binaries",
"extractVersionTemplate": "^jdk-\\d+\\+(?<version>\\d+).*$"
}
]
"extractVersionTemplate": "^jdk-\\d+\\+(?<version>\\d+)"
} ]
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down