From 77b9aa5199c68d91958260da52805caec22c66e5 Mon Sep 17 00:00:00 2001 From: Scott Leggett Date: Tue, 26 Mar 2024 16:06:00 +0800 Subject: [PATCH] chore: update dependabot configuration * change the dependabot version update interval to monthly * only group patch and minor version updates. major versions get their own PR for ease of tracking changes. --- .github/dependabot.yaml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 040c007..ef10bdb 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -3,24 +3,33 @@ updates: - package-ecosystem: github-actions directory: / schedule: - interval: weekly + interval: monthly groups: github-actions: patterns: - "*" + update-types: + - "minor" + - "patch" - package-ecosystem: docker directory: / schedule: - interval: daily + interval: monthly groups: docker: patterns: - "*" + update-types: + - "minor" + - "patch" - package-ecosystem: gomod directory: / schedule: - interval: daily + interval: monthly groups: gomod: patterns: - "*" + update-types: + - "minor" + - "patch"