Skip to content

Commit 5a160a2

Browse files
authored
Merge branch 'master' into drop-joda-time
2 parents 3ddfe7a + ca584b4 commit 5a160a2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ java {
5454

5555
ext {
5656
deps = [
57-
gocdPluginApi: 'cd.go.plugin:go-plugin-api:22.3.0',
57+
gocdPluginApi: 'cd.go.plugin:go-plugin-api:23.1.0',
5858
]
5959

6060
versions = project.ext.deps.collectEntries { lib, libGav -> [lib, libGav.split(':').last()] }
@@ -75,7 +75,7 @@ dependencies {
7575
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params'
7676
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine'
7777
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.24.2'
78-
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.1.1'
78+
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.2.0'
7979
testImplementation group: 'org.skyscreamer', name: 'jsonassert', version: '1.5.1'
8080
testImplementation group: 'org.jsoup', name: 'jsoup', version: '1.15.4'
8181
}

src/main/java/cd/go/contrib/elasticagent/KubernetesInstanceFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,8 @@ private static Map<String, String> getJinJavaContext() {
301301
HashMap<String, String> context = new HashMap<>();
302302
context.put(POD_POSTFIX, UUID.randomUUID().toString());
303303
context.put(CONTAINER_POSTFIX, UUID.randomUUID().toString());
304-
context.put(GOCD_AGENT_IMAGE, "gocd/gocd-agent-alpine-3.16");
305-
context.put(LATEST_VERSION, "v22.3.0");
304+
context.put(GOCD_AGENT_IMAGE, "gocd/gocd-agent-alpine-3.17");
305+
context.put(LATEST_VERSION, "v23.1.0");
306306
return context;
307307
}
308308
}

0 commit comments

Comments
 (0)