Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 25 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,42 @@ updates:
# checks workflow files in /.github/workflows
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
groups:
github-actions:
patterns:
- "*"
update-types:
- "minor"
- "patch"

# Go
- package-ecosystem: "gomod"
# checks /go.mod
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
groups:
go-modules:
patterns:
- "*"
update-types:
- "minor"
- "patch"

# Docker
- package-ecosystem: "docker"
# checks /Dockerfile
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
groups:
docker:
patterns:
- "*"
update-types:
- "minor"
- "patch"

# Python (PRs disabled)
- package-ecosystem: "pip"
Expand All @@ -28,4 +49,4 @@ updates:
schedule:
interval: "weekly"
# Allow up to 0 open pull requests for pip dependencies
open-pull-requests-limit: 0
open-pull-requests-limit: 0
Loading