From 53db8e68f98dc2617ae7917e2d4fa2085b46deec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Bl=C3=A4sing?= Date: Tue, 10 Feb 2026 21:23:27 +0100 Subject: [PATCH] Fix javadoc publishing after plugin update The maven javadoc plugin moved the default output folder for the javadoc. To acommodate for that the publishing workflow needs to be updated. 3.6.0 output directory: $basedir/target/site/apidocs 3.12.0 output directory: $basedir/target/reports/apidocs With new versions autodetection was improved and directory could be overridden if necessary. --- .github/workflows/javadoc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/javadoc.yml b/.github/workflows/javadoc.yml index 9be1833..0aaad93 100644 --- a/.github/workflows/javadoc.yml +++ b/.github/workflows/javadoc.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Javadoc - uses: MathieuSoysal/Javadoc-publisher.yml@v2.4.0 + uses: MathieuSoysal/Javadoc-publisher.yml@v3.0.2 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} javadoc-branch: javadoc