fix: hard codes qube host
Some checks failed
SonarQube Scan / SonarQube Trigger (pull_request) Failing after 10s

This commit is contained in:
Brock H Caldwell
2025-11-10 16:26:00 -06:00
parent d38f8ba4be
commit 0e1d8e15e3

View File

@@ -14,10 +14,11 @@ jobs:
- name: Checking out - name: Checking out
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0 fetch-depth: 0
- name: SonarQube Scan - name: SonarQube Scan
uses: kitabisa/sonarqube-action@v1.2.0 uses: kitabisa/sonarqube-action@v1.2.0
with: with:
host: ${{ secrets.SONARQUBE_HOST }} host: "https://qube.caldwell.digital"
login: ${{ secrets.SONARQUBE_TOKEN }} login: ${{ secrets.SONARQUBE_TOKEN }}
projectName: "torsearch"
projectBaseDir: "./src"