From 1c1a29b0086fbf3134a4ef3a4b27ec4322a19388 Mon Sep 17 00:00:00 2001
From: dgelessus <dgelessus@users.noreply.github.com>
Date: Mon, 19 Jun 2023 12:20:06 +0200
Subject: [PATCH] Switch CI from openjdk to eclipse-temurin images

The openjdk images are no longer updated, aside from early-access
builds. See:

* https://hub.docker.com/_/openjdk/
* https://github.com/docker-library/openjdk/issues/505
---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a57a570..a8ab126 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,4 +1,4 @@
-image: openjdk:8-jdk-slim
+image: eclipse-temurin:8
 stages:
   - test
   - deploy
@@ -19,11 +19,11 @@ tests:jdk-8:
 
 tests:jdk-11:
   extends: .tests
-  image: openjdk:11-jdk-slim
+  image: eclipse-temurin:11
 
 tests:jdk-17:
   extends: .tests
-  image: openjdk:17-jdk-slim
+  image: eclipse-temurin:17
 
 publish:
   stage: deploy
-- 
GitLab