From 681004c751a98fdb948af59efc9e1d1b0cbe03fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 04:01:37 +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 9c82b8b..7bcd8aa 100644 --- a/build.gradle +++ b/build.gradle @@ -61,7 +61,7 @@ repositories { 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, libGav.split(':').last()] } @@ -77,7 +77,7 @@ dependencies { testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' - testImplementation 'org.mockito:mockito-core:5.20.0' + testImplementation 'org.mockito:mockito-core:5.21.0' testImplementation 'org.assertj:assertj-core:3.27.6' testImplementation "cd.go.plugin:go-plugin-api:${project.versions.gocdPluginApi}" }