Skip to content

Commit e4450c2

Browse files
committed
Bump CI Java version
1 parent 4cb45ea commit e4450c2

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
java: [8, 11, 17, 21, 25]
22+
java: [17, 21, 25]
2323
distribution: [temurin]
2424
include:
2525
- java: 25
@@ -62,7 +62,7 @@ jobs:
6262
- name: Run test using Java 8 runtime
6363
run: ./gradlew testJava8
6464

65-
- name: Archive HTML test report
65+
- name: Archive HTML test reports
6666
if: ${{ always() }}
6767
uses: actions/upload-artifact@v5
6868
with:
@@ -77,15 +77,13 @@ jobs:
7777
path: "*/build/test-results/**/*.xml"
7878

7979
- name: Check binary reproducibility
80-
if: ${{ matrix.java != 8 }} # JDK 8 does not produce reproducible binaries
8180
run: |
8281
./gradlew clean primaryPublishJar
8382
find . -name '*.jar' | grep -v buildSrc | grep -v gradle-wrapper | xargs sha256sum | tee java-webauthn-server-artifacts.sha256sum
8483
./gradlew clean primaryPublishJar && sha256sum -c java-webauthn-server-artifacts.sha256sum
8584
./gradlew clean primaryPublishJar && sha256sum -c java-webauthn-server-artifacts.sha256sum
8685
8786
- name: Archive artifact checksums
88-
if: ${{ matrix.java != 8 }} # JDK 8 does not produce reproducible binaries
8987
uses: actions/upload-artifact@v5
9088
with:
9189
name: artifact-checksums-java${{ matrix.java }}-${{ matrix.distribution }}

0 commit comments

Comments
 (0)