Skip to content

Commit 5b0ef4e

Browse files
authored
Merge pull request #1305 from flux-iac/dependabot-enable-deps-upgrades
Enable non-security dependency upgrades
2 parents f9f7362 + 20181b1 commit 5b0ef4e

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

.github/dependabot.yaml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,23 @@ version: 2
22

33
updates:
44
- package-ecosystem: "gomod"
5-
directory: "/"
5+
directories:
6+
- "/"
7+
- "/api"
8+
- "/tfctl"
69
labels: ["area/ci", "dependencies"]
710
schedule:
811
interval: "weekly"
9-
# Only do security updates not version updates.
10-
open-pull-requests-limit: 0
1112
groups:
12-
# Group all updates together, so that they are all applied in a single PR.
13-
# Grouped updates are currently in beta and is subject to change.
14-
# xref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups
15-
ci:
16-
patterns:
17-
- "*"
13+
go-patch:
14+
update-types:
15+
- "patch"
16+
go-minor:
17+
update-types:
18+
- "minor"
19+
go-major:
20+
update-types:
21+
- "major"
1822

1923

2024
# maintain dependencies for github actions

0 commit comments

Comments
 (0)