Skip to content

Commit 2af0b62

Browse files
committed
Add --no-transfer-progress to codeql and sonarqube workflows
https://claude.ai/code/session_01RcJfwgM2cfjd3n5A8JrGqe
1 parent 6785a55 commit 2af0b62

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
- uses: github/codeql-action/init@v4
2626
with: { languages: java, queries: +security-and-quality }
2727
- name: Build with Maven
28-
run: mvn --batch-mode compile
28+
run: mvn --batch-mode --no-transfer-progress compile
2929
- uses: github/codeql-action/analyze@v4
3030
with: { category: "/language:java" }

.github/workflows/sonarqube.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
- name: Build and analyze
3838
env:
3939
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
40-
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=bernardladenthin_java-llama.cpp
40+
run: mvn -B --no-transfer-progress verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=bernardladenthin_java-llama.cpp

0 commit comments

Comments
 (0)