From 767703db37a88609d06c768d7823d423688ddbc9 Mon Sep 17 00:00:00 2001 From: Damian Orzepowski Date: Mon, 12 Aug 2024 15:51:39 +0200 Subject: [PATCH] ci(SPV-992): use dependabot update groups --- .github/dependabot.yml | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3938344..f57c700 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,33 @@ version: 2 updates: + # Maintain dependencies for the codebase - package-ecosystem: "gomod" + target-branch: "main" + directories: + - "/" + schedule: + interval: "weekly" + day: "monday" + labels: + - "dependencies" + groups: + go_modules: + update-types: + - "minor" + - "patch" + - "major" + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + target-branch: "main" directory: "/" schedule: - interval: "daily" + interval: "weekly" + day: "monday" + labels: + - "dependencies" + groups: + gh_actions: + update-types: + - "minor" + - "patch" + - "major"