chore(deps): Bump org.apache.maven.plugins:maven-site-plugin from 3.20.0 to 3.21.0 #489
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: SonarCloud analysis | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
sonarcloud: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.2.1 | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
- name: Set up cache for ~./m2/repository | |
uses: actions/cache@v4.1.1 | |
with: | |
path: ~/.m2/repository | |
key: pit-stryker-dashboard-reporter-${{ hashFiles('**/pom.xml') }} | |
- name: Set up JDK | |
uses: actions/setup-java@v4.4.0 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
check-latest: true | |
- name: SonarCloud Scan | |
run: | | |
mvn -B -Dsonar.login=$SONAR_TOKEN --no-transfer-progress verify sonar:sonar | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |