forked from homeall/caddy-reverse-proxy-cloudflare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json5
32 lines (32 loc) · 817 Bytes
/
renovate.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"Dockerfile"
],
"matchStrings": [
"CADDY_VERSION=(?<currentValue>v\\d+\\.\\d+\\.\\d+)"
],
"datasourceTemplate": "go",
"packageNameTemplate": "github.com/caddyserver/caddy/v2",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"fileMatch": [
"Dockerfile"
],
"matchStrings": [
"(?<packageName>github\\.com/[^\\s@]+)@(?<currentValue>v?\\d+\\.\\d+\\.\\d+(\\-[0-9]+\\-[a-z0-9]+)?)"
],
"datasourceTemplate": "go",
"packageNameTemplate": "{{packageName}}",
"versioningTemplate": "semver"
}
]
}