This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
Update dependency org.apache.maven.plugins:maven-site-plugin to v4.0.0-M14 - autoclosed #145
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: Sonar | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ develop ] | |
paths-ignore: | |
- '**.md' | |
- '.config/**' | |
- '.github/**' | |
- '.idea/**' | |
- 'assets/**' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths-ignore: | |
- '**.md' | |
- '.config/**' | |
- '.github/**' | |
- '.idea/**' | |
- 'assets/**' | |
env: | |
SONARCLOUD_ORG: ${{ github.event.organization.login }} | |
SONARCLOUD_HOST: https://sonarcloud.io | |
jobs: | |
sonar: | |
name: SonarCloud Scan | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Cache SonarCloud packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Cache Maven packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Build with Maven | |
run: | | |
./mvnw -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar \ | |
-DskipTests \ | |
-Dsonar.projectKey=${{ env.SONARCLOUD_ORG }}_${{ github.event.repository.name }} \ | |
-Dsonar.organization=${{ env.SONARCLOUD_ORG }} \ | |
-Dsonar.host.url=${{ env.SONARCLOUD_HOST }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |