From 276865c550236197f899948d88712b0440b01222 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 5 Aug 2021 07:42:00 +0200 Subject: [PATCH 1/3] Upgrade CI to Docker 20.10.8 Closes gh-27563 --- 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 207f6d73043..60d02d19196 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.7" +version="20.10.8" echo "https://download.docker.com/linux/static/stable/x86_64/docker-$version.tgz"; From 5b2c551ec4abf3e1da7b68feafe7d7f7ad4d367c Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 5 Aug 2021 07:42:52 +0200 Subject: [PATCH 2/3] Upgrade Java 8 version in CI image Closes gh-27568 --- 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 0a9812d5a58..2ee0979bfde 100755 --- a/ci/images/get-jdk-url.sh +++ b/ci/images/get-jdk-url.sh @@ -3,7 +3,7 @@ set -e case "$1" in java8) - echo "https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u292-b10/OpenJDK8U-jdk_x64_linux_hotspot_8u292b10.tar.gz" + echo "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u302-b08/OpenJDK8U-jdk_x64_linux_hotspot_8u302b08.tar.gz" ;; java11) echo "https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.11%2B9/OpenJDK11U-jdk_x64_linux_hotspot_11.0.11_9.tar.gz" From 575b536b8473eaa75cc1a8bad8f360426c792dc5 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 5 Aug 2021 07:43:36 +0200 Subject: [PATCH 3/3] Upgrade Java 11 version in CI image Closes gh-27570 --- 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 2ee0979bfde..715100ebc2f 100755 --- a/ci/images/get-jdk-url.sh +++ b/ci/images/get-jdk-url.sh @@ -6,7 +6,7 @@ case "$1" in echo "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u302-b08/OpenJDK8U-jdk_x64_linux_hotspot_8u302b08.tar.gz" ;; java11) - echo "https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.11%2B9/OpenJDK11U-jdk_x64_linux_hotspot_11.0.11_9.tar.gz" + echo "https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.12%2B7/OpenJDK11U-jdk_x64_linux_hotspot_11.0.12_7.tar.gz" ;; java15) echo "https://github.com/AdoptOpenJDK/openjdk15-binaries/releases/download/jdk-15.0.2%2B7/OpenJDK15U-jdk_x64_linux_hotspot_15.0.2_7.tar.gz"