From 81c43095d830e1c2bd1637014c5402101de3a7de Mon Sep 17 00:00:00 2001 From: Villu Ruusmann Date: Sun, 8 Jan 2023 10:06:08 +0200 Subject: [PATCH] Disabled the build for JDK 10 --- .github/workflows/maven.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 9e48a11..7000357 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -10,7 +10,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: [ 8, 9, 10, 11, 12, 13, 14, 15, 16, 17 ] + # Disabled for Java 10 due to Java compiler bug + java: [ 8, 9, 11, 12, 13, 14, 15, 16, 17 ] steps: - uses: actions/checkout@v2