Skip to content

Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.4 #285

Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.4

Bump com.diffplug.spotless:spotless-maven-plugin from 2.44.3 to 2.44.4 #285

Workflow file for this run

name: SonarQube
on:
push:
branches: ["main"]
paths-ignore: ["**/*.md"]
pull_request:
types: [opened, synchronize, reopened]
paths-ignore: ["**/*.md"]
jobs:
build:
name: Build & Analyze
runs-on: "ubuntu-24.04"
# typical duration is ~2min, set a reasonable amount as limit (default is 6h)
timeout-minutes: 8
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Cache SonarQube packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-sonar-${{ hashFiles('**/pom.xml') }}
${{ runner.os }}-sonar-
- name: Maven Build
uses: ./.github/actions/maven-build
with:
command: "verify"
skip_spotless: "true"
skip_changed_files: "true"
- name: SonarQube Analyze
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B --show-version --file pom.xml sonar:sonar -Dsonar.projectKey=llamara-ai_llamara-backend