From 317ce459a2152467625eb9dc2db2120136d6cd3a Mon Sep 17 00:00:00 2001 From: forax Date: Fri, 17 May 2024 17:01:00 +0200 Subject: [PATCH] update github action --- .github/workflows/maven.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 5114508..2ef277c 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -9,14 +9,17 @@ on: jobs: build: runs-on: ubuntu-latest - name: Java + Loom early access build + strategy: + matrix: + java: [ '21' ] + name: Java ${{ matrix.Java }} steps: - uses: actions/checkout@v3 - name: setup - uses: oracle-actions/setup-java@v1 + uses: actions/setup-java@v3 with: - website: jdk.java.net - release: 21 + distribution: zulu + java-version: ${{ matrix.java }} - name: build run: | mvn -B package