We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db9a223 commit 02fbd83Copy full SHA for 02fbd83
.github/workflows/maven.yml
@@ -28,7 +28,7 @@ jobs:
28
continue-on-error: ${{ matrix.experimental }}
29
strategy:
30
matrix:
31
- os: [ubuntu-latest, windows-latest, macos-13]
+ os: [ubuntu-latest, windows-latest, macos-latest]
32
java: [ 8, 11, 17, 21 ]
33
experimental: [false]
34
include:
@@ -65,7 +65,7 @@ jobs:
65
- name: Set up JDK ${{ matrix.java }}
66
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
67
with:
68
- distribution: 'temurin'
+ distribution: ${{ runner.os == 'macOS' && matrix.java == '8' && 'zulu' || 'temurin' }}
69
java-version: ${{ matrix.java }}
70
- name: Build with Maven
71
run: mvn --errors --show-version --batch-mode --no-transfer-progress -DtrimStackTrace=false '-Djdk.tls.client.protocols=TLSv1.2'
0 commit comments