We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 40849f9 + 1e5ab06 commit b3c42e3Copy full SHA for b3c42e3
.gitignore
@@ -10,6 +10,7 @@ bench.*
10
debug
11
debug.*
12
dist
13
+gosec.output
14
run
15
tmp
16
vendor
Jenkinsfile
@@ -78,6 +78,11 @@ pipeline {
78
}
79
80
stage('Scan For Security with Gosec') {
81
+ // Gosec only works on branch builds
82
+ when {
83
+ not { tag "v*" }
84
+ }
85
+
86
steps {
87
sh "./bin/check_golang_security -s High -c Medium -b ${env.BRANCH_NAME}"
88
junit(allowEmptyResults: true, testResults: 'gosec.output')
0 commit comments