From 32eda941ee31550afe858f7eedc11a8e753fcca5 Mon Sep 17 00:00:00 2001 From: games647 Date: Thu, 31 Aug 2023 12:41:04 +0200 Subject: [PATCH] Ignore Hikari and SnakeYAML in dependency updates --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9e9d4065..f5833839 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -14,8 +14,22 @@ updates: directory: "/" schedule: interval: weekly + groups: production-dependencies: dependency-type: "production" development-dependencies: dependency-type: "development" + exclude-patterns: + # Create single PR for these + # Plugin require special evaluation about their compatibility + - "loginsecurity" + - "ProtocolLib" + + ignore: + # HikariCP dropped Java 8 support with 5.0 + - dependency-name: "com.zaxxer:HikariCP" + update-types: ["version-update:semver-major"] + # SnakeYAML has breaking changes with 2.0 + - dependency-name: "org.yaml:snakeyaml" + update-types: ["version-update:semver-major"]