-
Notifications
You must be signed in to change notification settings - Fork 4
/
renovate.json
73 lines (73 loc) · 1.79 KB
/
renovate.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"extends": [
"config:base"
],
"regexManagers": [
{
"fileMatch": [
"^Dockerfile$"
],
"matchStrings": [
"ARG DATADOG_VERSION=(?<currentValue>.*)"
],
"datasourceTemplate": "github-tags",
"depNameTemplate": "DataDog/datadog-agent",
"versioningTemplate": "semver"
},
{
"fileMatch": [
"^Dockerfile$"
],
"matchStrings": [
"ARG DATADOG_INTEGRATIONS_CORE_VERSION=(?<currentValue>.*)"
],
"datasourceTemplate": "git-tags",
"depNameTemplate": "DataDog/integrations-core",
"versioningTemplate": "semver",
"lookupNameTemplate": "https://github.com/DataDog/integrations-core.git"
},
{
"fileMatch": [
"^Dockerfile$"
],
"matchStrings": [
"ARG S6_OVERLAY_VERSION=(?<currentValue>.*)"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "just-containers/s6-overlay",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(\\.(?<build>\\d+))?$",
"lookupNameTemplate": "just-containers/s6-overlay"
},
{
"fileMatch": [
"^Dockerfile$"
],
"matchStrings": [
"ARG ALPINE_VERSION=(?<currentValue>[0-9.]+)"
],
"datasourceTemplate": "docker",
"depNameTemplate": "alpine",
"versioningTemplate": "docker"
},
{
"fileMatch": [
"^Dockerfile$"
],
"matchStrings": [
"ARG GOLANG_VERSION=(?<currentValue>[0-9.]+)"
],
"datasourceTemplate": "docker",
"depNameTemplate": "golang",
"versioningTemplate": "docker"
}
],
"packageRules": [
{
"groupName": "datadog packages",
"groupSlug": "datadog",
"packagePatterns": [
"^DataDog/*"
]
}
]
}