From de47fb5d627a1b4e18bf00886a2c12f71c325767 Mon Sep 17 00:00:00 2001 From: Jeremy Landis Date: Sat, 3 Jun 2023 18:33:39 -0400 Subject: [PATCH 1/2] [GHA] Drop jdk 8 from the build directly as IT tests will switch and use jdk 8 to build --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a17e70500..8771d1220 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] - java: [8, 11, 17, 20, 21-ea] + java: [11, 17, 20, 21-ea] distribution: ['zulu'] fail-fast: false max-parallel: 4 From 0b8035faec95920e3a3f960541ccd7aa257b7b26 Mon Sep 17 00:00:00 2001 From: Jeremy Landis Date: Sat, 3 Jun 2023 18:35:30 -0400 Subject: [PATCH 2/2] [GHA] Run snapshot report generation using java 17 only --- .github/workflows/snapshot-report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/snapshot-report.yml b/.github/workflows/snapshot-report.yml index 78ac4107a..709e8ffbf 100644 --- a/.github/workflows/snapshot-report.yml +++ b/.github/workflows/snapshot-report.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/setup-java@v3 with: distribution: 'zulu' - java-version: '8' + java-version: '17' cache: 'maven' - name: Build with Maven run: ./mvnw clean install site -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn