Skip to content

Commit f2e63d2

Browse files
authored
reduces the dependabot config interval (#1242)
1 parent 3c304b0 commit f2e63d2

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

.github/dependabot.yml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,35 @@
11
version: 2
22
updates:
3-
# Configuration for the oc-mirror v1 go mod
3+
# Configuration for the oc-mirror v1 go mod (weekly security-updates)
44
- package-ecosystem: "gomod"
55
directory: "/"
66
schedule:
7-
interval: "daily"
7+
interval: "weekly"
88
# Disable version updates, only allow security updates
99
open-pull-requests-limit: 0
1010
groups:
11-
oc-mirror-v1:
11+
oc-mirror-v1-security-updates:
1212
applies-to: security-updates
1313
patterns: [ "*" ]
1414

15-
# Configuration for the oc-mirror v2 go module
15+
# Configuration for the oc-mirror v2 go module (monthly version updates)
1616
- package-ecosystem: "gomod"
1717
directory: "/v2"
1818
schedule:
19-
interval: "daily"
20-
# Allow all updates (version and security)
19+
interval: "monthly"
2120
open-pull-requests-limit: 10
2221
groups:
23-
oc-mirror-v2:
22+
oc-mirror-v2-version-updates:
23+
applies-to: version-updates
24+
patterns: [ "*" ]
25+
26+
# Configuration for the oc-mirror v2 go module (weekly security updates)
27+
- package-ecosystem: "gomod"
28+
directory: "/v2"
29+
schedule:
30+
interval: "weekly"
31+
open-pull-requests-limit: 10
32+
groups:
33+
oc-mirror-v2-security-updates:
34+
applies-to: security-updates
2435
patterns: [ "*" ]

0 commit comments

Comments
 (0)