diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cfd4c2d4..71173605 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,9 +10,10 @@ jobs: build: strategy: + fail-fast: false matrix: platform: [ubuntu-latest, macos-latest, windows-latest] - jdk: [17, 21] + jdk: [17, 21, 25] runs-on: ${{ matrix.platform }} name: on ${{ matrix.platform }} with JDK ${{ matrix.jdk }} @@ -22,7 +23,7 @@ jobs: - name: Set up JDK ${{ matrix.jdk }} uses: actions/setup-java@v5 with: - distribution: 'corretto' + distribution: 'temurin' java-version: '${{ matrix.jdk }}' check-latest: true cache: 'maven'