Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

chore(deps): bump org.apache.commons:commons-compress from 1.26.0 to … #298

chore(deps): bump org.apache.commons:commons-compress from 1.26.0 to …

chore(deps): bump org.apache.commons:commons-compress from 1.26.0 to … #298

Workflow file for this run

name: Sonar
env:
MAVEN_ARGS: -V -ntp -e
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
on:
push:
branches: [ main ]
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
test:
runs-on: ubuntu-latest
if: ${{ ( github.event_name == 'push' || github.event_name == 'pull_request' ) }}
steps:
- uses: actions/checkout@v4
- name: Set up Java and Maven
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: 'maven'
- name: Cache SonarCloud packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B org.jacoco:jacoco-maven-plugin:prepare-agent verify org.jacoco:jacoco-maven-plugin:report org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=java-operator-sdk_jenvtest