This is an automated email from the ASF dual-hosted git repository.
jochen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-rat.git
The following commit(s) were added to refs/heads/master by this push:
new d0f8f09 Disabling build with Java 17, because we are running into
https://bugs.openjdk.java.net/browse/JDK-8270866.
d0f8f09 is described below
commit d0f8f09297f117f5de50a2748e2905da589c9933
Author: Jochen Wiedmann <[email protected]>
AuthorDate: Thu Mar 31 23:06:25 2022 +0100
Disabling build with Java 17, because we are running into
https://bugs.openjdk.java.net/browse/JDK-8270866.
---
.github/workflows/maven.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index faebe32..925001b 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -31,7 +31,8 @@ jobs:
os: [ubuntu-latest, windows-latest]
# RAT-296: disable JDK10 due to
# Caused by: sun.security.validator.ValidatorException: PKIX path building
failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to
find valid certification path to requested target
- java: [8, 11, 12, 13, 14, 15, 16, 17]
+# Java 17 disabled, because we are running into
https://bugs.openjdk.java.net/browse/JDK-8270866
+ java: [8, 11, 12, 13, 14, 15, 16, 18]
fail-fast: false
runs-on: ${{ matrix.os }}