forked from grafana/mimir
-
Notifications
You must be signed in to change notification settings - Fork 1
/
renovate.json5
51 lines (51 loc) · 1.62 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"baseBranches": ["main", "release-2.14", "release-2.13"],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
],
"schedule": ["before 9am on Monday"],
"packageRules": [
{
"matchBaseBranches": ["release-2.14", "release-2.13"],
"packagePatterns": ["*"],
"enabled": false
},
{
"matchPackageNames": [
"github.com/grafana/mimir-prometheus",
"github.com/grafana/memberlist",
"github.com/grafana/regexp",
"github.com/colega/go-yaml-yaml",
"github.com/grafana/goautoneg",
"github.com/grafana/opentracing-contrib-go-stdlib",
"github.com/charleskorn/go-grpc"
],
"enabled": false
},
// Pin Go at the current version, since we want to upgrade it manually.
// Remember to keep this in sync when upgrading our Go version!
{
"matchDatasources": ["docker", "golang-version"],
"matchPackageNames": ["go", "golang"],
"allowedVersions": "<=1.22.5"
},
// Keep deps for the dashboard screenshotting tool up to date
{
"description": "Enable updating Node.js dependencies in operations/mimir-mixin-tools/screenshots",
"paths": ["operations/mimir-mixin-tools/screenshots"],
"managers": ["npm"],
"enabled": true
}
],
"branchPrefix": "deps-update/",
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security-update"]
},
"osvVulnerabilityAlerts": true
}