diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index ee0bdc4..0581b70 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -1,20 +1,57 @@ version: 2 updates: - package-ecosystem: "npm" + versioning-strategy: "increase" directory: "/" schedule: interval: "weekly" day: "monday" time: "10:00" + groups: + minor-and-patch: + patterns: + - "*" + update-types: + - "minor" + - "patch" + major: + patterns: + - "*" + update-types: + - "major" - package-ecosystem: "docker" directory: "/" schedule: interval: "weekly" day: "monday" time: "10:00" + groups: + minor-and-patch: + patterns: + - "*" + update-types: + - "minor" + - "patch" + major: + patterns: + - "*" + update-types: + - "major" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" day: "monday" time: "10:00" + groups: + minor-and-patch: + patterns: + - "*" + update-types: + - "minor" + - "patch" + major: + patterns: + - "*" + update-types: + - "major"