From 323ce64c18edcd3c33f0fa9b511a8f9d6031f9f9 Mon Sep 17 00:00:00 2001 From: Johannes Link Date: Mon, 10 Jun 2024 09:32:57 +0200 Subject: [PATCH] Microsoft Java doesn't support version 22 either --- .github/workflows/matrix.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/matrix.js b/.github/workflows/matrix.js index 5ee54c9ff..34851c0fa 100644 --- a/.github/workflows/matrix.js +++ b/.github/workflows/matrix.js @@ -83,11 +83,8 @@ matrix.setNamePattern([ 'tz', 'locale', ]); -// Microsoft Java has no distribution for 8, 18, 19, 20 -matrix.exclude({java_distribution: 'microsoft', java_version: '8'}); -matrix.exclude({java_distribution: 'microsoft', java_version: '18'}); -matrix.exclude({java_distribution: 'microsoft', java_version: '19'}); -matrix.exclude({java_distribution: 'microsoft', java_version: '20'}); +// Microsoft Java has no distribution for 8, 18, 19, 20, 22 +matrix.exclude({java_distribution: 'microsoft', java_version: ['8', '11', '19', '22']}); // Oracle supports 17+ only matrix.exclude({java_distribution: 'oracle', java_version: ['8', '11', '19']}); // Temurin supports 11+ only