This is an automated email from the ASF dual-hosted git repository.

claude pushed a commit to branch feature/restructure
in repository https://gitbox.apache.org/repos/asf/creadur-rat.git

commit 4a26a9dcbfbf7aaee4753b344f09cf58276b3731
Author: P. Ottlinger <[email protected]>
AuthorDate: Sun Dec 21 16:16:46 2025 +0100

    RAT-478, RAT-479: Skip site and javadoc build step on GHA with JDK17
---
 .github/workflows/maven.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index c6851629..5f0d5e52 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -81,7 +81,9 @@ jobs:
             **/target/surefire-reports
 
       - name: Generate javadoc
+        if: ${{ matrix.java != 17}}
         run: ./mvnw -e -B -V -ntp javadoc:javadoc
 
       - name: Build site
+        if: ${{ matrix.java != 17}}
         run: ./mvnw -e -B -V -ntp site site:stage

Reply via email to