Skip to content

Commit

Permalink
Format renovate.json
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Oct 7, 2024
1 parent 2fa3ae9 commit 7060370
Showing 1 changed file with 48 additions and 17 deletions.
65 changes: 48 additions & 17 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,15 @@
"packageRules": [
{
"allowedVersions": "<7.0.0",
"matchPackageNames": ["com.google.inject:guice"],
"matchPackageNames": [
"com.google.inject:guice"
],
"description": "We focus on Guice 6 until core adapts 7"
},
{
"matchPackagePatterns": ["selenium"],
"matchPackagePatterns": [
"selenium"
],
"groupName": "Selenium"
},
{
Expand All @@ -50,49 +54,76 @@
],
"regexManagers": [
{
"fileMatch": ["src/main/java/org/jenkinsci/test/acceptance/FallbackConfig\\.java"],
"matchStrings": ["selenium/standalone-(firefox|chrome):(?<currentValue>.*?)\""],
"fileMatch": [
"src/main/java/org/jenkinsci/test/acceptance/FallbackConfig\\.java"
],
"matchStrings": [
"selenium/standalone-(firefox|chrome):(?<currentValue>.*?)\""
],
"depNameTemplate": "org.seleniumhq.selenium:selenium-java",
"datasourceTemplate": "maven"
},
{
"fileMatch": ["src/main/resources/ath-container/Dockerfile"],
"matchStrings": ["ARG FIREFOX_VERSION=(?<currentValue>.*?)\n"],
"fileMatch": [
"src/main/resources/ath-container/Dockerfile"
],
"matchStrings": [
"ARG FIREFOX_VERSION=(?<currentValue>.*?)\n"
],
"depNameTemplate": "firefox",
"versioningTemplate": "semver-coerced",
"datasourceTemplate": "custom.firefox"
},
{
"fileMatch": ["src/main/resources/ath-container/Dockerfile"],
"matchStrings": ["ARG GECKODRIVER_VERSION=(?<currentValue>.*?)\n"],
"fileMatch": [
"src/main/resources/ath-container/Dockerfile"
],
"matchStrings": [
"ARG GECKODRIVER_VERSION=(?<currentValue>.*?)\n"
],
"depNameTemplate": "mozilla/geckodriver",
"datasourceTemplate": "github-releases"
},
{
"fileMatch": ["src/main/resources/ath-container/Dockerfile"],
"matchStrings": ["ARG MAVEN_VERSION=(?<currentValue>.*?)\n"],
"fileMatch": [
"src/main/resources/ath-container/Dockerfile"
],
"matchStrings": [
"ARG MAVEN_VERSION=(?<currentValue>.*?)\n"
],
"depNameTemplate": "org.apache.maven:maven-core",
"datasourceTemplate": "maven"
},
{
"fileMatch": ["src/main/resources/ath-container/Dockerfile"],
"matchStrings": ["ARG DOCKER_BUILDX_VERSION=(?<currentValue>.*?)\n"],
"fileMatch": [
"src/main/resources/ath-container/Dockerfile"
],
"matchStrings": [
"ARG DOCKER_BUILDX_VERSION=(?<currentValue>.*?)\n"
],
"depNameTemplate": "docker/buildx",
"datasourceTemplate": "github-releases"
},
{
"fileMatch": ["src/main/resources/ath-container/Dockerfile"],
"matchStrings": ["ARG DOCKER_VERSION=(?<currentValue>.*?)\n"],
"fileMatch": [
"src/main/resources/ath-container/Dockerfile"
],
"matchStrings": [
"ARG DOCKER_VERSION=(?<currentValue>.*?)\n"
],
"depNameTemplate": "docker",
"datasourceTemplate": "docker"
},
{
"fileMatch": ["src/test/java/plugins/OicAuthPluginTest.java"],
"matchStrings": [".* KEYCLOAK_IMAGE =\n\\s*\"(?<repo>.*?):(?<currentValue>.*?)@(?<currentDigest>sha256:.*?)\";\n"],
"fileMatch": [
"src/test/java/plugins/OicAuthPluginTest.java"
],
"matchStrings": [
".* KEYCLOAK_IMAGE =\n\\s*\"(?<repo>.*?):(?<currentValue>.*?)@(?<currentDigest>sha256:.*?)\";\n"
],
"depNameTemplate": "{{{repo}}}",
"datasourceTemplate": "docker"
}

],
"customDatasources": {
"firefox": {
Expand Down

0 comments on commit 7060370

Please sign in to comment.