From fa879a78442841ab986c31337deb36e5ae11ef5b Mon Sep 17 00:00:00 2001 From: Rune Flobakk Date: Sun, 26 Nov 2023 23:17:27 +0100 Subject: [PATCH] Build on Java 17 and 21 on GitHub --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cf79937..3843ad9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,11 +6,11 @@ jobs: build: strategy: matrix: - java: [ '8', '11' ] + java: [ '17', '21' ] name: Build on Java ${{ matrix.java }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive - uses: actions/setup-java@v3