From fd87331c1505e018dab008c86a6d0378793053a9 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Thu, 12 May 2022 20:21:10 +1000 Subject: [PATCH 1/3] use shared gh action --- .github/workflows/maven.yml | 43 +++++++++++-------------------------- 1 file changed, 12 insertions(+), 31 deletions(-) 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 ' From 64eea59ddc01e131dd1f16c3e5c5578175e79d02 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Thu, 12 May 2022 20:23:30 +1000 Subject: [PATCH 2/3] Update release-drafter.yml --- .github/workflows/release-drafter.yml | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 96f54b5..ada7b16 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@v2 From 60c320e7f431021dabbc1a4772db25e312c085e5 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Thu, 12 May 2022 20:23:40 +1000 Subject: [PATCH 3/3] Update release-drafter.yml --- .github/workflows/release-drafter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index ada7b16..22f45ff 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -22,4 +22,4 @@ on: - master jobs: update_release_draft: - uses: codehaus-plexus/.github/.github/workflows/release-drafter.yml@v2 + uses: codehaus-plexus/.github/.github/workflows/release-drafter.yml@master