From 7c08ad0f886923d4595a78a6b27900d64814097c Mon Sep 17 00:00:00 2001 From: Erik van Oosten Date: Sun, 14 Jan 2024 09:25:17 +0100 Subject: [PATCH] Test builds with Java 21 Test builds with Java 11, 17 and 21 (removing 20, adding 21). --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b389902..38fb9f34 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: matrix: os: [ubuntu-latest] scala: [2.13.10] - java: [temurin@11, temurin@17, temurin@20] + java: [temurin@11, temurin@17, temurin@21] runs-on: ${{ matrix.os }} steps: - name: Checkout current branch (full) @@ -47,12 +47,12 @@ jobs: java-version: 17 cache: sbt - - name: Setup Java (temurin@20) - if: matrix.java == 'temurin@20' + - name: Setup Java (temurin@21) + if: matrix.java == 'temurin@21' uses: actions/setup-java@v4 with: distribution: temurin - java-version: 20 + java-version: 21 cache: sbt - name: Check that workflows are up to date