diff --git a/scripts/gosec.sh b/scripts/gosec.sh index c8faa52a5..c3de635e9 100755 --- a/scripts/gosec.sh +++ b/scripts/gosec.sh @@ -3,6 +3,9 @@ set -o pipefail if [[ -x "$(command -v gosec)" ]]; then + # gosec does not support -mod=vendor, so fallback to non-module support and + # assume all dependencies are available in ./vendor already + export GO111MODULE=off find cmd pkg -type d -print0 | xargs --null gosec else echo "WARNING: gosec not found, skipping security tests" >&2