From f791a0202668bd33880c15cc72886e7be3766aa0 Mon Sep 17 00:00:00 2001 From: Andrew Rouse Date: Thu, 18 Apr 2024 11:24:40 +0100 Subject: [PATCH] Remove Java 8 GH action build The newest version of maven does not work with Java 8. The jenkins build uses an older version of maven, but github actions have no intention of allowing the confiugration of the maven version actions/setup-java#457 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f7cee6a7..76f4b408 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,7 +50,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: [8, 11] + java: [11] name: build with jdk ${{matrix.java}} steps: