From 01fd489b47f8f2a3e1fdb5a3779c930c29e9ee57 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 7 Apr 2022 08:51:48 +0200 Subject: [PATCH 1/2] Upgrade Ubuntu version in CI images --- ci/images/ci-image/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/images/ci-image/Dockerfile b/ci/images/ci-image/Dockerfile index ac4db911a8..37ab9b6edb 100644 --- a/ci/images/ci-image/Dockerfile +++ b/ci/images/ci-image/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:focal-20220302 +FROM ubuntu:focal-20220404 ADD setup.sh /setup.sh ADD get-jdk-url.sh /get-jdk-url.sh From 4e9af3e277e64ff6bacb9a925c9058b7d17d3400 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 7 Apr 2022 08:52:43 +0200 Subject: [PATCH 2/2] Upgrade Java 18 in CI image --- 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 d090494f66..3b0006dd7f 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-02-12-08-06-beta/OpenJDK18-jdk_x64_linux_hotspot_2022-02-12-08-06.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"