name: Scanning flow on: workflow_call: secrets: SONARQUBE_HOST: required: true SONARQUBE_TOKEN: required: true jobs: sonarqube-scan: runs-on: ubuntu-latest steps: - name: Checking out uses: actions/checkout@v4 with: fetch-depth: 0 - name: SonarQube Scan uses: kitabisa/sonarqube-action@v1.2.0 with: host: ${{ secrets.SONARQUBE_HOST }} login: ${{ secrets.SONARQUBE_TOKEN }}