Skip to content

Bump org.apache.maven.plugins:maven-source-plugin from 3.3.1 to 3.4.0 #28

Bump org.apache.maven.plugins:maven-source-plugin from 3.3.1 to 3.4.0

Bump org.apache.maven.plugins:maven-source-plugin from 3.3.1 to 3.4.0 #28

Workflow file for this run

# SPDX-FileCopyrightText: 2025 SPDX contributors
# SPDX-FileType: SOURCE
# SPDX-License-Identifier: Apache-2.0
name: Generate and publish API JavaDocs
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
- name: Generate docs
run: mvn javadoc:javadoc
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/reports/apidocs