Skip to content

Commit fd49953

Browse files
authored
Update dependencies with Renovate (#148)
1 parent 2aa2adb commit fd49953

File tree

3 files changed

+35
-19
lines changed

3 files changed

+35
-19
lines changed

.github/dependabot.yml

-18
This file was deleted.

.github/renovate.json

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended",
5+
":semanticCommitsDisabled",
6+
"schedule:daily"
7+
],
8+
"labels": [
9+
"dependencies"
10+
],
11+
"customManagers": [
12+
{
13+
"customType": "regex",
14+
"fileMatch": [
15+
"src/test/java/org/jenkinsci/plugins/reverse_proxy_auth/docker/PlanetExpressTest.java"
16+
],
17+
"matchStrings": [
18+
".* TEST_IMAGE =\n\\s*\"(?<repo>.*?):(?<currentValue>.*?)@(?<currentDigest>sha256:.*?)\";\n"
19+
],
20+
"depNameTemplate": "{{{repo}}}",
21+
"datasourceTemplate": "docker"
22+
}
23+
],
24+
"rebaseWhen": "conflicted",
25+
"ignorePaths": [
26+
"**/node_modules/**",
27+
"**/bower_components/**",
28+
"**/vendor/**",
29+
"**/examples/**",
30+
"**/__tests__/**",
31+
"**/tests/**",
32+
"**/__fixtures__/**"
33+
]
34+
}

src/test/java/org/jenkinsci/plugins/reverse_proxy_auth/docker/PlanetExpressTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
public class PlanetExpressTest {
2626

2727
static final String TEST_IMAGE =
28-
"rroemhild/test-openldap@sha256:b4e433bbcba1f17899d6bcb0a8e854bbe52c754faa4e785d0c27a2b55eb12cd8";
28+
"rroemhild/test-openldap:1.0@sha256:b4e433bbcba1f17899d6bcb0a8e854bbe52c754faa4e785d0c27a2b55eb12cd8";
2929
static final String DN = "dc=planetexpress,dc=com";
3030
static final String MANAGER_DN = "cn=admin,dc=planetexpress,dc=com";
3131
static final String MANAGER_SECRET = "GoodNewsEveryone";

0 commit comments

Comments
 (0)