Skip to content

Commit

Permalink
Add Dependabot Configuration (#50)
Browse files Browse the repository at this point in the history
Add Dependabot configuration to keep our GitHub Actions, Docker Images
and Go Packages up to date.
  • Loading branch information
ricoberger committed Mar 6, 2024
1 parent bfdc762 commit cb9825f
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
assignees:
- "ricoberger"
groups:
github-actions:
patterns:
- "*"

- package-ecosystem: "docker"
directory: "/cmd/plugin"
schedule:
interval: "monthly"
assignees:
- "ricoberger"
groups:
docker-plugin:
patterns:
- "*"

- package-ecosystem: "docker"
directory: "/cmd/ingester"
schedule:
interval: "monthly"
assignees:
- "ricoberger"
groups:
docker-ingester:
patterns:
- "*"

- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "monthly"
assignees:
- "ricoberger"
groups:
gomod:
patterns:
- "*"

0 comments on commit cb9825f

Please sign in to comment.