diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 200b6e6..d51226f 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -16,37 +16,18 @@ # under the License. name: GitHub CI - -on: [push, pull_request] +on: + push: + pull_request: jobs: - build: - - strategy: - matrix: - os: [ubuntu-latest,windows-latest, macOS-latest] - java: [8, 11, 14, 15] - fail-fast: false - - runs-on: ${{ matrix.os }} - steps: - - name: Checkout - uses: actions/checkout@v3.0.2 - - - name: Set up cache for ~./m2/repository - uses: actions/cache@v3.0.2 - with: - path: ~/.m2/repository - key: maven-${{ matrix.os }}-java${{ matrix.java }}-${{ hashFiles('**/pom.xml') }} - restore-keys: | - maven-${{ matrix.os }}-java${{ matrix.java }}- - maven-${{ matrix.os }}- - - name: Set up JDK - uses: actions/setup-java@v3 - with: - distribution: 'adopt' - java-version: ${{ matrix.java }} - - - name: Build with Maven - run: mvn install javadoc:javadoc -e -B -V + build: + name: Build it + uses: codehaus-plexus/.github/.github/workflows/maven.yml@master + with: + jdk-fast-fail-build: '11' + jdk-matrix: '["11", "17"]' + jdk-distribution-matrix: '["zulu", "temurin", "microsoft", "liberica"]' + os-matrix: '["ubuntu-latest","windows-latest", "macOS-latest"]' + maven_args: 'install javadoc:javadoc -e -B -V -fae ' diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 96f54b5..22f45ff 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -1,12 +1,25 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + name: Release Drafter on: push: branches: - master jobs: - update_release_draft: - runs-on: ubuntu-latest - steps: - - uses: release-drafter/release-drafter@v5.19.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + update_release_draft: + uses: codehaus-plexus/.github/.github/workflows/release-drafter.yml@master