5
5
version : 2
6
6
enable-beta-ecosystems : true
7
7
updates :
8
-
9
8
# Enable version updates for Go modules
10
9
- package-ecosystem : " gomod"
11
10
directory : " /"
11
+ # Only update patch versions to reduce the chance of regressions getting introduced
12
+ ignore :
13
+ - dependency-name : " *"
14
+ update-types :
15
+ - " version-update:semver-major"
16
+ - " version-update:semver-minor"
12
17
schedule :
13
18
interval : " monthly"
14
19
commit-message :
@@ -31,6 +36,12 @@ updates:
31
36
- " /pod-configs/module/application-load-balancer"
32
37
- " /pod-configs/module/load-balancer"
33
38
- " /pod-configs/buckets"
39
+ # Only update patch versions to reduce the chance of regressions getting introduced
40
+ ignore :
41
+ - dependency-name : " *"
42
+ update-types :
43
+ - " version-update:semver-major"
44
+ - " version-update:semver-minor"
34
45
schedule :
35
46
interval : " monthly"
36
47
commit-message :
@@ -46,6 +57,12 @@ updates:
46
57
- " /argocd-internal/root-app"
47
58
- " /argocd/applications"
48
59
- " /argocd/root-app"
60
+ # Only update patch versions to reduce the chance of regressions getting introduced
61
+ ignore :
62
+ - dependency-name : " *"
63
+ update-types :
64
+ - " version-update:semver-major"
65
+ - " version-update:semver-minor"
49
66
schedule :
50
67
interval : " monthly"
51
68
commit-message :
@@ -58,17 +75,29 @@ updates:
58
75
- package-ecosystem : " docker"
59
76
directories :
60
77
- " /installer"
78
+ # Only update patch versions to reduce the chance of regressions getting introduced
79
+ ignore :
80
+ - dependency-name : " *"
81
+ update-types :
82
+ - " version-update:semver-major"
83
+ - " version-update:semver-minor"
61
84
schedule :
62
85
interval : " monthly"
63
86
commit-message :
64
87
prefix : " Dockerfile"
65
88
reviewers :
66
89
- " se-chris-thach"
67
90
- " dmytroye"
68
-
91
+
69
92
# Enable version updates for GitHub Actions
70
93
- package-ecosystem : " github-actions"
71
94
directory : " /"
95
+ # Only update patch versions to reduce the chance of regressions getting introduced
96
+ ignore :
97
+ - dependency-name : " *"
98
+ update-types :
99
+ - " version-update:semver-major"
100
+ - " version-update:semver-minor"
72
101
schedule :
73
102
interval : " monthly"
74
103
commit-message :
0 commit comments