Skip to content

chore(deps): bump org.junit.platform:junit-platform-launcher from 1.11.1 to 1.11.2 #1854

chore(deps): bump org.junit.platform:junit-platform-launcher from 1.11.1 to 1.11.2

chore(deps): bump org.junit.platform:junit-platform-launcher from 1.11.1 to 1.11.2 #1854

Workflow file for this run

---
name: SonarCloud analysis
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
permissions:
pull-requests: read
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4.2.0
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4.4.0
with:
java-version-file: .java-version
distribution: "temurin"
- name: Cache SonarCloud packages
uses: actions/cache@v4.1.0
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v4.1.0
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build
run: ./gradlew build jacocoTestReport --info
- name: Set up JDK
uses: actions/setup-java@v4.4.0
with:
java-version-file: .java-version
distribution: "temurin"
- name: Analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew sonarqube --info