This is an automated email from the ASF dual-hosted git repository.
twolf pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git
The following commit(s) were added to refs/heads/master by this push:
new 43380444a [releng] Exclude JUnit 6 from dependabot updates
43380444a is described below
commit 43380444abe9d2779db1c4b68b1316799cb23df6
Author: Thomas Wolf <[email protected]>
AuthorDate: Thu Oct 9 11:36:36 2025 +0200
[releng] Exclude JUnit 6 from dependabot updates
JUnit 6 requires Java 17+. As long as our BREE is < 17, using JUnit 6 is
not an option.
---
.github/dependabot.yml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index a7853bc3b..8ea443414 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -35,6 +35,8 @@ updates:
versions: [ ">= 2.0.0" ]
- dependency-name: "ch.qos.logback:*"
versions: [ ">= 1.3.0" ]
+ - dependency-name: "org.junit.jupiter:*"
+ versions: [ ">= 6.0.0" ]
# We *do* test against 2.2.X. We only want to get patch version updates
for mina-core
- dependency-name: "org.apache.mina:mina-core"
update-types: [ "version-update:semver-major",
"version-update:semver-minor" ]
\ No newline at end of file