From 485fd9dd932a0448f84a994569ea3d8acf24b99b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 17:02:24 +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.mockito:mockito-core](https://github.com/mockito/mockito). Updates `cd.go.plugin:go-plugin-api` from 25.3.0 to 25.4.0 - [Release notes](https://github.com/gocd/gocd/releases) - [Commits](https://github.com/gocd/gocd/compare/25.3.0...25.4.0) Updates `org.mockito:mockito-core` from 5.20.0 to 5.21.0 - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v5.20.0...v5.21.0) --- updated-dependencies: - dependency-name: cd.go.plugin:go-plugin-api dependency-version: 25.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-deps - dependency-name: org.mockito:mockito-core dependency-version: 5.21.0 dependency-type: direct:production update-type: version-update:semver-minor 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 307015c..21d6a16 100644 --- a/build.gradle +++ b/build.gradle @@ -32,7 +32,7 @@ static String versionOf(String dependencySpec) { ext { deps = [ - gocdPluginApi: 'cd.go.plugin:go-plugin-api:25.3.0', + gocdPluginApi: 'cd.go.plugin:go-plugin-api:25.4.0', ] versions = project.ext.deps.collectEntries { lib, libGav -> [lib, versionOf(libGav)] } @@ -48,7 +48,7 @@ dependencies { testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' testImplementation 'org.assertj:assertj-core:3.27.6' - testImplementation 'org.mockito:mockito-core:5.20.0' + testImplementation 'org.mockito:mockito-core:5.21.0' testImplementation project.deps.gocdPluginApi }