chore(deps): update s4u/setup-maven-action action to v1.16.0 #15
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: Check | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Maven | |
uses: s4u/setup-maven-action@382542f77617f34e56bf83868920a4d45b7451e7 # v1.16.0 | |
with: | |
java-version: 8 | |
java-distribution: temurin | |
maven-version: 3.6.3 | |
- name: Maven | |
# Additional args to work around Github Runner issue (on Azure) | |
# see https://github.com/actions/runner-images/issues/1499#issuecomment-689467080 | |
run: mvn clean install -Dmaven.test.failure.ignore=true -Dmaven.wagon.httpconnectionManager.ttlSeconds=60 | |
# https://github.com/marketplace/actions/junit-report-action | |
# Note: Currently no tests | |
# - name: Publish Test Report | |
# uses: mikepenz/action-junit-report@v3 | |
# if: always() # always run even if the previous step fails | |
# with: | |
# report_paths: '*/target/surefire-reports/*.xml' |