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
40 changes: 40 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Dependabot configuration
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
#
# Ecosystems in this repo:
# - gomod: root module (shared Go packages)
# - github-actions: .github/workflows
#
# Each ecosystem groups ALL of its updates into a single PR per run. Both regular
# version updates and security fixes are grouped, so Dependabot opens at most one
# PR per ecosystem per directory (security updates are otherwise opened
# individually and ungrouped by default).

version: 2

updates:
- package-ecosystem: gomod
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 1
groups:
gomod:
applies-to: version-updates
patterns: ["*"]
gomod-security:
applies-to: security-updates
patterns: ["*"]

- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 1
groups:
github-actions:
applies-to: version-updates
patterns: ["*"]
github-actions-security:
applies-to: security-updates
patterns: ["*"]
Loading