Skip to content

chore(deps): Bump actions/checkout from 4.1.7 to 4.2.0 (#20) #14

chore(deps): Bump actions/checkout from 4.1.7 to 4.2.0 (#20)

chore(deps): Bump actions/checkout from 4.1.7 to 4.2.0 (#20) #14

Workflow file for this run

name: Sonar
on:
push:
branches:
- main
permissions:
contents: read
jobs:
sonarqube:
name: SonarQube Trigger
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: SonarQube Scan
uses: sonarsource/sonarqube-scan-action@aecaf43ae57e412bd97d70ef9ce6076e672fe0a9 # v2.3.0
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST }}
with:
args: >
-Dsonar.projectKey=${{ secrets.SONAR_PROJECT_KEY }}