Skip to content
This repository was archived by the owner on Jul 8, 2026. It is now read-only.

Bump ubi9/openjdk-21-runtime from 1.23 to 1.24 in /src/main/docker (#… #478

Bump ubi9/openjdk-21-runtime from 1.23 to 1.24 in /src/main/docker (#…

Bump ubi9/openjdk-21-runtime from 1.23 to 1.24 in /src/main/docker (#… #478

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@v6
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Cache SonarQube packages
uses: actions/cache@v6
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