commit 905a86f7c877df87c0b4703ef039f08a5b0d7463 parent 9b4da8142b0a40088064a8e0083dadc80af7a0a6 Author: Andreas Gruhler <andreas.gruhler@adfinis.com> Date: Tue, 28 May 2024 18:44:48 +0200 feat(gitleaks): no banner Diffstat:
M | Jenkinsfile | | | 6 | +++++- |
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile @@ -10,7 +10,11 @@ pipeline { stages { stage('scan') { steps { - sh 'gitleaks detect --source . -v --report-path gitleaks-report.json' + sh ''' + gitleaks detect \ + --verbose --no-color --no-banner \ + --report-path gitleaks-report.json \ + ''' sh 'ls' archiveArtifacts artifacts: 'gitleaks-report.json', fingerprint: true }