Skip to content

Commit f47c85e

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

File tree

1 file changed

+26
-6
lines changed

1 file changed

+26
-6
lines changed

.github/dependabot.yaml

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,36 @@
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/runtime
17+
- dependency-name: "k8s.io/*"
18+
- dependency-name: "sigs.k8s.io/*"
19+
# OCI deps are updated by fluxcd/pkg/oci
20+
- dependency-name: "github.com/docker/*"
21+
- dependency-name: "github.com/distribution/*"
22+
- dependency-name: "github.com/google/go-containerregistry*"
23+
- dependency-name: "github.com/opencontainers/*"
24+
# Helm deps are updated by fluxcd/pkg/helmtestserver
25+
- dependency-name: "helm.sh/helm/*"
26+
# Flux APIs are updated at release time
27+
- dependency-name: "github.com/fluxcd/source-controller/api"
428
- package-ecosystem: "github-actions"
529
directory: "/"
630
labels: ["area/ci", "dependencies"]
7-
schedule:
8-
# By default, this will be on a monday.
9-
interval: "weekly"
1031
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
1432
ci:
1533
patterns:
1634
- "*"
35+
schedule:
36+
interval: "daily"

0 commit comments

Comments
 (0)