Skip to content

Commit

Permalink
Add Dependabot Configuration (#205)
Browse files Browse the repository at this point in the history
Add Dependabot configuration to keep our Docker images, GitHub Actions
and Go packages up to date.
  • Loading branch information
ricoberger authored Oct 15, 2023
1 parent c5f0067 commit e4d7b19
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
groups:
github-actions:
patterns:
- "*"

- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "monthly"
groups:
docker:
patterns:
- "*"

- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
groups:
gomod:
patterns:
- "*"

0 comments on commit e4d7b19

Please sign in to comment.