From 1da049b196e35f848018feb9dcf372560d7c94f3 Mon Sep 17 00:00:00 2001 From: Hugo Hirsch Date: Sun, 21 Jul 2024 21:53:40 +0200 Subject: [PATCH] Switch to temurin --- .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 bec9f7f..349b88e 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -29,19 +29,19 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - java: [8, 16] + java: [8, 17, 21] fail-fast: false runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up JDK - uses: actions/setup-java@v3.3.0 + uses: actions/setup-java@v4 with: - distribution: adopt + distribution: temurin java-version: ${{ matrix.java }} cache: 'maven'