Skip to content

Commit

Permalink
security: enable go stdlib scans (#20905)
Browse files Browse the repository at this point in the history
* security: enable go stdlib scans

* security: enable go stdlib binary scan

* Fix formating
  • Loading branch information
dduzgun-security authored May 23, 2024
1 parent 6f02144 commit 574f53d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .release/security-scan.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ container {
binary {
go_modules = true
osv = true
go_stdlib = true
# We can't enable npm for binary targets today because we don't yet embed the relevant file
# (yarn.lock) in the Consul binary. This is something we may investigate in the future.

Expand Down
7 changes: 4 additions & 3 deletions scan.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
# unlike the scans configured here, will block releases in CRT.

repository {
go_modules = true
npm = true
osv = true
go_modules = true
npm = true
osv = true
go_stdlib_version_file = ".go-version"

secrets {
all = true
Expand Down

0 comments on commit 574f53d

Please sign in to comment.