Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.1 to 3.11.2 #440
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci-sauce CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ ubuntu-latest, macos-latest, windows-latest ] | |
fail-fast: false | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
cache: 'maven' | |
- name: Build | |
shell: bash | |
run: ./mvnw install -Dgpg.skip=true -B -V | |
# As per https://github.com/codecov/codecov-action/issues/295 the repo needs to be | |
# registered to be able to use https://github.com/codecov/codecov-action | |
- name: Upload coverage to Codecov | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
curl -Os https://uploader.codecov.io/latest/linux/codecov | |
chmod +x codecov | |
./codecov |