Skip to content

build: bump org.sonarqube from 5.0.0.4638 to 5.1.0.4882 #137

build: bump org.sonarqube from 5.0.0.4638 to 5.1.0.4882

build: bump org.sonarqube from 5.0.0.4638 to 5.1.0.4882 #137

Workflow file for this run

name: Test and Sonar Analysis
on:
pull_request:
branches:
- 'v3-main'
types: [opened, synchronize, reopened, ready_for_review]
paths-ignore:
- 'logo/**'
- 'docs/**'
- 'CHANGELOG.md'
- 'README**.md'
- 'Dockerfile'
- '.github/**'
jobs:
build:
if: ${{ (github.event.pull_request.draft == false) && !contains(github.event.pull_request.labels.*.name, 'deploy-snapshot') }}
name: Build and analyze
runs-on: ubuntu-latest
steps:
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Cache SonarCloud packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew clean build test codeCoverageReport