Thanks to visit codestin.com
Credit goes to github.com

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
28 changes: 14 additions & 14 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: [
'config:recommended',
],
"ignorePresets": [
ignorePresets: [
// Ensure we get the latest version and are not pinned to old versions.
"workarounds:javaLTSVersions",
'workarounds:javaLTSVersions',
],
"customManagers": [
customManagers: [
// Update .java-version file with the latest JDK version.
{
"customType": "regex",
"fileMatch": [
"^\\.java-version$"
customType: 'regex',
fileMatch: [
'^\\.java-version$',
],
"matchStrings": [
"(?<currentValue>.*)\\n"
matchStrings: [
'(?<currentValue>.*)\\n',
],
"datasourceTemplate": "java-version",
"depNameTemplate": "java",
datasourceTemplate: 'java-version',
depNameTemplate: 'java',
// Only write the major version.
"extractVersionTemplate": "^(?<version>\\d+)",
extractVersionTemplate: '^(?<version>\\d+)',
},
],
}