Skip to content

Commit c04ed65

Browse files
authored
Merge pull request #627 from fluxcd/dependabot-gomod
ci: Enable dependabot `gomod` updates
2 parents ca4aa24 + 783e2ea commit c04ed65

File tree

1 file changed

+22
-6
lines changed

1 file changed

+22
-6
lines changed

.github/dependabot.yaml

+22-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,32 @@
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+
- dependency-name: "github.com/go-logr/*"
20+
# Flux APIs are updated at release time
21+
- dependency-name: "github.com/fluxcd/image-automation-controller/api"
22+
- dependency-name: "github.com/fluxcd/image-reflector-controller/api"
23+
- dependency-name: "github.com/fluxcd/source-controller/api"
424
- package-ecosystem: "github-actions"
525
directory: "/"
626
labels: ["area/ci", "dependencies"]
7-
schedule:
8-
# By default, this will be on a monday.
9-
interval: "weekly"
1027
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
1428
ci:
1529
patterns:
1630
- "*"
31+
schedule:
32+
interval: "daily"

0 commit comments

Comments
 (0)