From 508c694947b56a0ef2683caa0b8026490df0cd94 Mon Sep 17 00:00:00 2001 From: Ralph Plawetzki Date: Sun, 3 Dec 2023 20:03:17 +0100 Subject: [PATCH] Update dependabot config --- .github/dependabot.yml | 37 +++++++++++++++++++++++++++++++------ 1 file changed, 31 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 19f7763..fb613b0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,11 +1,36 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - version: 2 updates: - package-ecosystem: "maven" - directory: "/" # Location of package manifests + directory: "/" schedule: interval: "weekly" + day: "monday" + time: "06:00" + timezone: "Etc/UTC" + groups: + java-test-dependencies: + patterns: + - "org.junit.jupiter:*" + maven-build-plugins: + patterns: + - "org.apache.maven.plugins:*" + - "org.sonatype.plugins:*" + java-production-dependencies: + patterns: + - "*" + exclude-patterns: + - "org.openjfx:*" + - "org.apache.maven.plugins:*" + - "org.junit.jupiter:*" + - "org.sonatype.plugins:*" + + - package-ecosystem: "github-actions" + directory: "/" # even for `.github/workflows` + schedule: + interval: "monthly" + groups: + github-actions: + patterns: + - "*" + labels: + - "misc:ci"