mirror of
https://github.com/Luzifer/envrun.git
synced 2024-11-08 14:20:01 +00:00
16 lines
357 B
Makefile
16 lines
357 B
Makefile
publish:
|
|
curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
|
|
bash golang.sh
|
|
|
|
# -- Vulnerability scanning --
|
|
|
|
trivy:
|
|
trivy fs . \
|
|
--dependency-tree \
|
|
--exit-code 1 \
|
|
--format table \
|
|
--ignore-unfixed \
|
|
--quiet \
|
|
--scanners config,license,secret,vuln \
|
|
--severity HIGH,CRITICAL \
|
|
--skip-dirs docs
|