Skip to content

Commit d166498

Browse files
authored
Upgrade CI docker images from openjdk to eclipse-temurin (#1492)
1 parent b5c6ec8 commit d166498

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ allprojects {
2929

3030
ext {
3131
// Platforms
32-
grpcVersion = '1.50.0' // [1.34.0,)
33-
jacksonVersion = '2.13.4.20221012' // [2.9.0,)
34-
micrometerVersion = '1.9.4' // [1.0.0,)
32+
grpcVersion = '1.50.2' // [1.34.0,)
33+
jacksonVersion = '2.13.4.20221013' // [2.9.0,)
34+
micrometerVersion = '1.9.5' // [1.0.0,)
3535

3636
slf4jVersion = '1.7.36' // [1.4.0,) // stay on 1.x for a while to don't use any APIs from 2.x which may break our users which decide on 1.x
37-
protoVersion = '3.21.6' // [3.10.0,)
37+
protoVersion = '3.21.8' // [3.10.0,)
3838
annotationApiVersion = '1.3.2'
3939
guavaVersion = '31.1-jre' // [10.0,)
4040
tallyVersion = '0.11.1' // [0.4.0,)
@@ -43,11 +43,11 @@ ext {
4343

4444
jsonPathVersion = '2.7.0' // compileOnly
4545

46-
springBootVersion = '2.7.4'// [2.4.0,)
46+
springBootVersion = '2.7.5'// [2.4.0,)
4747

4848
// test scoped
4949
logbackVersion = '1.2.11'
50-
mockitoVersion = '4.8.0'
50+
mockitoVersion = '4.8.1'
5151
junitVersion = '4.13.2'
5252
}
5353

docker/buildkite/Dockerfile-JDK11

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openjdk:11-slim
1+
FROM eclipse-temurin:11-focal
22

33
# Git is needed in order to update the dls submodule
44
RUN apt-get update && apt-get install -y protobuf-compiler git

docker/buildkite/Dockerfile-JDK18

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openjdk:18-slim
1+
FROM eclipse-temurin:11-focal
22

33
# Git is needed in order to update the dls submodule
44
RUN apt-get update && apt-get install -y protobuf-compiler git

docker/buildkite/Dockerfile-JDK8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openjdk:8-slim
1+
FROM eclipse-temurin:11-focal
22

33
# Git is needed in order to update the dls submodule
44
RUN apt-get update && apt-get install -y protobuf-compiler git

0 commit comments

Comments
 (0)