Skip to content

Commit

Permalink
keep the spotless overlords happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jtnord committed Sep 11, 2024
1 parent ed35891 commit 49d9388
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
},
{
"fileMatch": ["src/test/java/plugins/OicAuthPluginTest.java"],
"matchStrings": [".* KEYCLOAK_IMAGE=\"(?<repo>.*?):(?<currentValue>.*?)@(?<currentDigest>sha256:.*?)\";\n"],
"matchStrings": [".* KEYCLOAK_IMAGE =\n\\s*\"(?<repo>.*?):(?<currentValue>.*?)@(?<currentDigest>sha256:.*?)\";\n"],
"depNameTemplate": "{{{repo}}}",
"datasourceTemplate": "docker"
}
Expand Down
3 changes: 2 additions & 1 deletion src/test/java/plugins/OicAuthPluginTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ public class OicAuthPluginTest extends AbstractJUnitTest {
private static final String REALM = "test-realm";
private static final String CLIENT = "jenkins";

private static final String KEYCLOAK_IMAGE="keycloak/keycloak:25.0.4@sha256:bf788a3b7fd737143f98d4cb514cb9599c896acee01a26b2117a10bd99e23e11";
private static final String KEYCLOAK_IMAGE =
"keycloak/keycloak:25.0.4@sha256:bf788a3b7fd737143f98d4cb514cb9599c896acee01a26b2117a10bd99e23e11";

@Rule
public KeycloakContainer keycloak = new KeycloakContainer(KEYCLOAK_IMAGE);
Expand Down

0 comments on commit 49d9388

Please sign in to comment.