Bump org.jacoco:jacoco-maven-plugin from 0.8.11 to 0.8.12 #177
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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Java CI with Maven | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Fetch recent updates | |
run: git fetch --prune --unshallow | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
cache: 'maven' | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Amend permission for maven wrapper | |
run: chmod +x mvnw | |
- name: Build with Maven | |
run: ./mvnw -B package --file pom.xml | |
- name: Run code analysis | |
run: ./mvnw sonar:sonar -Dsonar.projectKey=pos-my_boot-rest-api-interview -Dsonar.organization=pos-my -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=${{ secrets.SONAR_LOGIN }} -Dsonar.coverage.jacoco.xmlReportPaths=target/surefire-reports/TEST-*.xml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |