From 6cded5b92871abd2a02ef1c2811efb55c2e13709 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 31 Mar 2022 09:06:19 +0200 Subject: [PATCH 1/2] Upgrade Java 18 version in CI image Closes gh-30488 --- ci/images/get-jdk-url.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/images/get-jdk-url.sh b/ci/images/get-jdk-url.sh index c959027b4ded..4d11c3418e7c 100755 --- a/ci/images/get-jdk-url.sh +++ b/ci/images/get-jdk-url.sh @@ -12,7 +12,7 @@ case "$1" in echo "https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.2%2B8/OpenJDK17U-jdk_x64_linux_hotspot_17.0.2_8.tar.gz" ;; java18) - echo "https://github.com/adoptium/temurin18-binaries/releases/download/jdk18-2022-03-17-09-00-beta/OpenJDK18-jdk_x64_linux_hotspot_2022-03-17-09-00.tar.gz" + echo "https://github.com/adoptium/temurin18-binaries/releases/download/jdk-18%2B36/OpenJDK18U-jdk_x64_linux_hotspot_18_36.tar.gz" ;; *) echo $"Unknown java version" From 2e90fd2302a5272bd18a5c49b5a14decc90d4305 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 31 Mar 2022 09:06:56 +0200 Subject: [PATCH 2/2] Upgrade CI to Docker 20.10.14 Closes gh-30484 --- ci/images/get-docker-url.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/images/get-docker-url.sh b/ci/images/get-docker-url.sh index de0e6326126e..fae9032a9e7f 100755 --- a/ci/images/get-docker-url.sh +++ b/ci/images/get-docker-url.sh @@ -1,5 +1,5 @@ #!/bin/bash set -e -version="20.10.13" +version="20.10.14" echo "https://download.docker.com/linux/static/stable/x86_64/docker-$version.tgz";