From 3f5162d4b2446764c6e876066cbd40d4be7a547a Mon Sep 17 00:00:00 2001 From: "Piotr P. Karwasz" Date: Wed, 13 May 2026 00:42:21 +0200 Subject: [PATCH] Ignore JUnit 6.x upgrade proposals Changes the Dependabot configuration, to ignore JUnit 6 upgrade proposals. JUnit 6 requires Java 17 and most of the projects have a Java 8 baseline. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 90ec55f74..859aaec89 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,6 +19,11 @@ updates: directory: "/" schedule: interval: "quarterly" + ignore: + # JUnit 6.x requires Java 17 + - dependency-name: "org.junit:*" + versions: [ "[6,)" ] + - package-ecosystem: "github-actions" directory: "/" schedule: