This is an automated email from the ASF dual-hosted git repository.

ppkarwasz pushed a commit to branch fix/junit-dependabot-update
in repository https://gitbox.apache.org/repos/asf/commons-parent.git

commit 3f5162d4b2446764c6e876066cbd40d4be7a547a
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Wed May 13 00:42:21 2026 +0200

    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 90ec55f..859aaec 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:

Reply via email to