-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
renovate.json5
62 lines (62 loc) · 1.7 KB
/
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
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
{
extends: [
'config:recommended',
'github>suzuki-shunsuke/renovate-config#2.3.0',
'github>aquaproj/aqua-renovate-config#2.2.0',
'github>suzuki-shunsuke/renovate-config:nolimit#2.3.0',
'github>aquaproj/aqua-renovate-config:file#2.2.0(tests/aqua.*\\.yaml)',
'github>suzuki-shunsuke/renovate-config:action-go-version#2.3.0',
'github>aquaproj/aqua-renovate-config:file#2.2.0(aqua/imports/.*\\.ya?ml)',
'github>aquaproj/aqua-renovate-config:installer-script#2.2.0(Dockerfile-prebuilt)',
],
ignorePaths: [
'tests/update/**',
'tests/insert/**',
],
customManagers: [
{
customType: 'regex',
fileMatch: [
'.*\\.go',
],
depNameTemplate: 'aquaproj/aqua-proxy',
datasourceTemplate: 'github-releases',
matchStrings: [
'"(?<currentValue>.*)" // renovate: depName=aquaproj/aqua-proxy',
],
},
{
customType: 'regex',
fileMatch: [
'.*\\.go',
],
depNameTemplate: 'aquaproj/aqua-registry',
datasourceTemplate: 'github-releases',
matchStrings: [
'"(?<currentValue>.*)",? // renovate: depName=aquaproj/aqua-registry',
],
},
{
customType: 'regex',
fileMatch: [
'^pkg/cosign/version\\.go',
],
depNameTemplate: 'sigstore/cosign',
datasourceTemplate: 'github-releases',
matchStrings: [
'const Version = "(?<currentValue>.*)"',
],
},
{
customType: 'regex',
fileMatch: [
'^pkg/slsa/version\\.go',
],
depNameTemplate: 'slsa-framework/slsa-verifier',
datasourceTemplate: 'github-releases',
matchStrings: [
'const Version = "(?<currentValue>.*)"',
],
},
],
}