File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5252 run : dotnet build src/SmartRAG/SmartRAG.csproj --configuration Release --verbosity quiet
5353
5454 - name : Check for vulnerabilities
55- run : dotnet list package src/SmartRAG/SmartRAG.csproj --vulnerable
55+ run : dotnet list package --vulnerable --project src/SmartRAG/SmartRAG.csproj
5656
5757 build :
5858 name : Build & Package
@@ -274,10 +274,10 @@ jobs:
274274 - name : Run security scan
275275 run : |
276276 echo "Checking for vulnerable packages..."
277- dotnet list package src/SmartRAG/SmartRAG.csproj --vulnerable
277+ dotnet list package --vulnerable --project src/SmartRAG/SmartRAG.csproj
278278 echo "Checking for outdated packages..."
279279 dotnet tool install --global dotnet-outdated-tool || echo "dotnet-outdated already installed"
280- dotnet outdated src/SmartRAG/SmartRAG.csproj --upgrade || echo "No outdated packages or tool unavailable"
280+ dotnet outdated --upgrade --project src/SmartRAG/SmartRAG.csproj || echo "No outdated packages or tool unavailable"
281281
282282 - name : Initialize CodeQL
283283 uses : github/codeql-action/init@v3
You can’t perform that action at this time.
0 commit comments