Skip to content

Commit d8fd68b

Browse files
committed
for some reason renovate made the config in json instead of json5. Change to json5 to get around this warning: WARN: File contents are invalid JSON but parse using JSON5. Support for this will be removed in a future release so please change to a support .json5 file name or ensure correct JSON syntax
1 parent 2d41b6d commit d8fd68b

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

renovate.json renamed to renovate.json5

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"config:recommended"
4+
"config:recommended",
5+
],
6+
"schedule": [
7+
"* * * * 0,6",
58
],
6-
{
7-
"description": "Every weekend",
8-
"schedule": ["* * * * 0,6"]
9-
},
109
"labels": ["dependencies"],
1110
"postUpdateOptions": ["gomodTidy"],
1211
"vulnerabilityAlerts": {
13-
"enabled": true
12+
"enabled": true,
1413
},
1514
"osvVulnerabilityAlerts": true,
1615
"customManagers": [
@@ -20,10 +19,10 @@
2019
"/(^|/)Makefile$/",
2120
"/(^|/)makefile$/",
2221
"/(^|/)GNUMakefile$/",
23-
"/\\.mk$/"
22+
"/\\.mk$/",
2423
],
2524
"matchStrings": [
26-
"# renovate: datasource=(?<datasource>[a-zA-Z0-9-._]+?) depName=(?<depName>[^\\s]+?)(?: (?:packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?(?: registryUrl=(?<registryUrl>[^\\s]+?))?\\s+[A-Za-z0-9_]+?_VERSION\\s*:*\\??=\\s*[\"']?(?<currentValue>.+?)[\"']?\\s"
25+
"# renovate: datasource=(?<datasource>[a-zA-Z0-9-._]+?) depName=(?<depName>[^\\s]+?)(?: (?:packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?(?: registryUrl=(?<registryUrl>[^\\s]+?))?\\s+[A-Za-z0-9_]+?_VERSION\\s*:*\\??=\\s*[\"']?(?<currentValue>.+?)[\"']?\\s",
2726
]
2827
}
2928
],
@@ -32,38 +31,38 @@
3231
"groupName": "kubernetes",
3332
"groupSlug": "kubernetes-go",
3433
"matchDatasources": [
35-
"go"
34+
"go",
3635
],
3736
"matchPackageNames": [
3837
"k8s.io/**",
39-
"sigs.k8s.io/**"
38+
"sigs.k8s.io/**",
4039
]
4140
},
4241
{
4342
"groupName": "otel",
4443
"groupSlug": "otel-go",
4544
"matchDatasources": [
46-
"go"
45+
"go",
4746
],
4847
"matchPackageNames": [
49-
"go.opentelemetry.io/**"
48+
"go.opentelemetry.io/**",
5049
]
5150
},
5251
{
5352
"groupName": "aws",
5453
"groupSlug": "aws-go",
5554
"matchDatasources": [
56-
"go"
55+
"go",
5756
],
5857
"matchPackageNames": [
59-
"github.com/aws/**"
58+
"github.com/aws/**",
6059
]
6160
},
6261
{
6362
"groupName": "devbox",
6463
"groupSlug": "devbox",
6564
"matchDatasources": [
66-
"devbox"
65+
"devbox",
6766
]
6867
}
6968
]

0 commit comments

Comments
 (0)