fix workflow: remove github dependency + duplicate scan
SonarQube Code Quality Scan / scan (push) Failing after 21s

This commit is contained in:
ShaoHua
2025-12-05 16:50:22 +08:00
parent 16d2fa6487
commit 83f5cb929b
+4 -5
View File
@@ -30,17 +30,16 @@ jobs:
dotnet --version
- name: Run OWASP Dependency Check
env:
HTTP_PROXY: http://127.0.0.1:7890
HTTPS_PROXY: http://127.0.0.1:7890
run: |
New-Item -Path $env:DC_OUTPUT -ItemType Directory -Force
& "D:\Paths\Gitea\dependency-check\bin\dependency-check.bat" `
--project "VectorDBDemo" `
--scan "." `
--format "XML" `
--out "$env:DC_OUTPUT" `
-Dproxy.host=$env:PROXY_HOST `
-Dproxy.port=$env:PROXY_PORT `
-DconnectionTimeout=30000 `
-DreadTimeout=30000
--out "$env:DC_OUTPUT"
shell: pwsh