From a3fd9ff602ee0e68290b3000d9f005c918e12cff Mon Sep 17 00:00:00 2001 From: David Barri Date: Fri, 27 May 2022 17:12:01 +1000 Subject: [PATCH] CI upgrade * Bump Java 8 to 11 to avoid a jar reading bug * Bump Java 14 to 18 to test on the latest Java * Disable fail-fast, doesn't match my workflow on this project --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 867252410..b0a526c9f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,11 +15,12 @@ jobs: ci: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: include: - - java: 14 + - java: 18.0.1 scala: 2 - - java: 8 + - java: 11.0.15 scala: 3 name: Scala v${{ matrix.scala }} / Java v${{ matrix.java }} steps: @@ -32,7 +33,7 @@ jobs: - name: Setup Scala uses: japgolly/setup-everything-scala@v3.1 with: - java-version: adopt@1.${{ matrix.java }} + java-version: adoptium@1.${{ matrix.java }} - name: Build and test shell: bash