Skip to content

Commit f455608

Browse files
committed
ci: Enable dependabot gomod updates
Signed-off-by: Stefan Prodan <[email protected]>
1 parent b816076 commit f455608

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed

.github/dependabot.yaml

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,29 @@
11
version: 2
22

33
updates:
4+
- package-ecosystem: "gomod"
5+
directory: "/"
6+
labels: ["dependencies"]
7+
schedule:
8+
interval: "daily"
9+
groups:
10+
go-deps:
11+
patterns:
12+
- "*"
13+
allow:
14+
- dependency-type: "direct"
15+
ignore:
16+
# Kubernetes deps are updated by fluxcd/pkg
17+
- dependency-name: "k8s.io/*"
18+
- dependency-name: "sigs.k8s.io/*"
19+
# Flux APIs pkg are updated at release time
20+
- dependency-name: "github.com/fluxcd/notification-controller/api"
421
- package-ecosystem: "github-actions"
522
directory: "/"
623
labels: ["area/ci", "dependencies"]
7-
schedule:
8-
# By default, this will be on a monday.
9-
interval: "weekly"
1024
groups:
11-
# Group all updates together, so that they are all applied in a single PR.
12-
# Grouped updates are currently in beta and is subject to change.
13-
# xref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups
1425
ci:
1526
patterns:
1627
- "*"
28+
schedule:
29+
interval: "daily"

0 commit comments

Comments
 (0)