Skip to content

chore(deps): Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 to 3.5.2 #498

chore(deps): Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 to 3.5.2

chore(deps): Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 to 3.5.2 #498

Workflow file for this run

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.2
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.2
with:
path: ~/.m2/repository
key: pit-stryker-dashboard-reporter-${{ hashFiles('**/pom.xml') }}
- name: Set up JDK
uses: actions/setup-java@v4.5.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 }}