diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 848221e4f..38f9564c3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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" @@ -28,4 +49,4 @@ updates: schedule: interval: "weekly" # Allow up to 0 open pull requests for pip dependencies - open-pull-requests-limit: 0 \ No newline at end of file + open-pull-requests-limit: 0