Add Java 17.0.5.

This commit is contained in:
Mark Paluch
2023-01-13 11:53:00 +01:00
parent 995151b32c
commit ae2bc720f4
2 changed files with 12 additions and 4 deletions

4
Jenkinsfile vendored
View File

@@ -25,7 +25,7 @@ pipeline {
steps {
script {
def image = docker.build("springci/spring-data-release-tools:0.4", "ci")
def image = docker.build("springci/spring-data-release-tools:0.5", "ci")
docker.withRegistry('', 'hub.docker.com-springbuildmaster') {
image.push()
}
@@ -39,7 +39,7 @@ pipeline {
}
agent {
docker {
image 'springci/spring-data-release-tools:0.4'
image 'springci/spring-data-release-tools:0.5'
}
}
options { timeout(time: 4, unit: 'HOURS') }