This is an automated email from the ASF dual-hosted git repository. andy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/jena.git
commit 4da9ea060495bc250f0bb08cfb6d78a53132397e Author: Øyvind Gjesdal <[email protected]> AuthorDate: Thu Oct 17 22:40:36 2024 +0200 run github actions maven.yml for both java 17 and 21 --- .github/workflows/maven.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index d76c3044e1..266e3e2bb9 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -21,13 +21,14 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] + java_version: ['17', '21'] steps: - uses: actions/checkout@v4 - - name: Set up JDK 17 + - name: Set up JDK ${{ matrix.java_version }} uses: actions/setup-java@v4 with: distribution: 'temurin' - java-version: '17' + java-version: ${{ matrix.java_version }} - name: Build with Maven run: mvn -B --file pom.xml -Dmaven.javadoc.skip=true install
