24 lines
782 B
YAML
24 lines
782 B
YAML
name: SonarQube Scan
|
|
on:
|
|
workflow_call:
|
|
jobs:
|
|
sonarqube:
|
|
name: SonarQube Trigger
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checking out
|
|
uses: actions/checkout@v4
|
|
with:
|
|
# Disabling shallow clone is recommended for improving relevancy of reporting
|
|
fetch-depth: 0
|
|
#- name: SonarQube Scan
|
|
# uses: kitabisa/sonarqube-action@v1.2.0
|
|
# with:
|
|
# host: ${{ secrets.SONARQUBE_HOST }}
|
|
# login: ${{ secrets.SONARQUBE_TOKEN }}
|
|
- name: SonarQube Scan
|
|
uses: sonarsource/sonarqube-scan-action@master # Ex: v2.1.0, See the latest version at https://github.com/marketplace/actions/official-sonarqube-scan
|
|
env:
|
|
with:
|
|
host: ${{ secrets.SONARQUBE_HOST }}
|
|
login: ${{ secrets.SONARQUBE_TOKEN }} |