From 7ee4149f6ee06c8e424573914e53adf399e7f3a6 Mon Sep 17 00:00:00 2001 From: Cyril Dangerville <1372580+cdanger@users.noreply.github.com> Date: Sun, 18 Feb 2024 03:57:44 +0100 Subject: [PATCH] Update ci.yml: upgrade to Java 17 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff02257..e004571 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,11 +13,11 @@ jobs: steps: - name: Git checkout uses: actions/checkout@v2 - - name: Use Java 11 + - name: Use Java 17 uses: actions/setup-java@v1 with: - java-version: 11 - - name: 'Unit Tests with Java 11' + java-version: 17 + - name: 'Unit Tests with Java 17' run: | mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V mvn test -B