From 1d1a0979b54d7fd5baaf80af6de82ed74bfc1f60 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Dec 2025 20:17:44 +0000 Subject: [PATCH] build(deps): bump org.junit:junit-bom from 5.10.0 to 6.0.1 Bumps [org.junit:junit-bom](https://github.com/junit-team/junit-framework) from 5.10.0 to 6.0.1. - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](https://github.com/junit-team/junit-framework/compare/r5.10.0...r6.0.1) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- checker/build.gradle | 2 +- test-utils/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/checker/build.gradle b/checker/build.gradle index 19708ab..916b999 100644 --- a/checker/build.gradle +++ b/checker/build.gradle @@ -19,7 +19,7 @@ dependencies { implementation project(':framework') implementation "io.github.eisop:checker-qual:${versions.eisopVersion}" - testImplementation platform('org.junit:junit-bom:5.10.0') + testImplementation platform('org.junit:junit-bom:6.0.1') testRuntimeOnly 'org.junit.platform:junit-platform-launcher' testImplementation 'org.junit.jupiter:junit-jupiter' testImplementation project(':test-utils') diff --git a/test-utils/build.gradle b/test-utils/build.gradle index 98dd431..c364e2e 100644 --- a/test-utils/build.gradle +++ b/test-utils/build.gradle @@ -4,6 +4,6 @@ plugins { dependencies { api project(':framework') - api platform('org.junit:junit-bom:5.10.0') + api platform('org.junit:junit-bom:6.0.1') api 'org.junit.jupiter:junit-jupiter' }