Skip to content

Commit

Permalink
dependabot: use grouped updates for Go and NPM dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Hahling <[email protected]>
  • Loading branch information
rolinh authored and kimstacy committed Oct 10, 2023
1 parent 84af342 commit 1c69ac0
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ updates:
labels:
- kind/enhancement
- release-note/misc

groups:
dev-deps:
dependency-type: 'development'
prod-deps:
dependency-type: 'production'
- package-ecosystem: gomod
directory: ./backend
schedule:
Expand All @@ -19,13 +23,17 @@ updates:
ignore:
- dependency-name: "github.com/cilium/cilium"
- dependency-name: "github.com/cilium/hubble"
# k8s dependencies will be updated manually all at once
- dependency-name: "k8s.io/*"
- dependency-name: "sigs.k8s.io/*"
labels:
- kind/enhancement
- release-note/misc

groups:
k8s-deps:
patterns:
- "k8s.io/*"
- "sigs.k8s.io/*"
all-go-deps:
patterns:
- '*'
- package-ecosystem: github-actions
directory: /
schedule:
Expand All @@ -35,7 +43,10 @@ updates:
labels:
- kind/enhancement
- release-note/misc

groups:
all-github-actions:
patterns:
- '*'
- package-ecosystem: docker
directory: /
schedule:
Expand All @@ -47,7 +58,6 @@ updates:
labels:
- ci/dependabot
- kind/enhancement

- package-ecosystem: docker
directory: /backend
schedule:
Expand Down

0 comments on commit 1c69ac0

Please sign in to comment.