From 2c70a740014b98f93c06fe07bce0d880f1604b7c Mon Sep 17 00:00:00 2001 From: Egon Willighagen Date: Sun, 18 Jun 2023 10:16:40 +0200 Subject: [PATCH] Updated build instructions --- .github/workflows/maven.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 40c5f05..6837377 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -8,18 +8,18 @@ on: jobs: build: - runs-on: ubuntu-latest strategy: matrix: - java: [ 8, 11 ] + java: [ 11, 19 ] name: Java ${{ matrix.java }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Java - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: + distribution: temurin java-version: ${{ matrix.java }} - name: Build with Maven run: mvn clean test -q