From 6a6adfd6b76f5e26ef6b629a634e58ce63da63ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 04:12:29 +0000 Subject: [PATCH] Bump the gradle-deps group with 2 updates Bumps the gradle-deps group with 2 updates: [cd.go.plugin:go-plugin-api](https://github.com/gocd/gocd) and [org.junit:junit-bom](https://github.com/junit-team/junit-framework). Updates `cd.go.plugin:go-plugin-api` from 25.4.0 to 26.1.0 - [Release notes](https://github.com/gocd/gocd/releases) - [Commits](https://github.com/gocd/gocd/compare/25.4.0...26.1.0) Updates `org.junit:junit-bom` from 6.1.1 to 6.1.2 - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](https://github.com/junit-team/junit-framework/compare/r6.1.1...r6.1.2) --- updated-dependencies: - dependency-name: cd.go.plugin:go-plugin-api dependency-version: 26.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: gradle-deps - dependency-name: org.junit:junit-bom dependency-version: 6.1.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-deps ... Signed-off-by: dependabot[bot] --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 6c45e1c..5ace637 100644 --- a/build.gradle +++ b/build.gradle @@ -61,7 +61,7 @@ repositories { ext { deps = [ - gocdPluginApi: 'cd.go.plugin:go-plugin-api:25.4.0', + gocdPluginApi: 'cd.go.plugin:go-plugin-api:26.1.0', ] versions = project.ext.deps.collectEntries { lib, libGav -> [lib, libGav.split(':').last()] } @@ -73,7 +73,7 @@ dependencies { exclude(module: 'error_prone_annotations') // Not needed at runtime } - testImplementation platform('org.junit:junit-bom:6.1.1') + testImplementation platform('org.junit:junit-bom:6.1.2') testImplementation 'org.junit.jupiter:junit-jupiter-api' testImplementation 'org.junit.jupiter:junit-jupiter-params' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'