Skip to content

Commit

Permalink
added cve exception (#31)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Wilkerson <[email protected]>
  • Loading branch information
wilkermichael authored Mar 6, 2024
1 parent 8346432 commit a457718
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions scan.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

# Configuration for security scanner.
# Run on PRs and pushes to `main` and `release/**` branches.
# See .github/workflows/security-scan.yml for CI config.

# To run manually, install scanner and then run `scan repository .`

# Scan results are triaged via the GitHub Security tab for this repo.
# See `security-scanner` docs for more information on how to add `triage` config
# for specific results or to exclude paths.

# .release/security-scan.hcl controls scanner config for release artifacts, which
# unlike the scans configured here, will block releases in CRT.

repository {
go_modules = true
npm = true
osv = true

secrets {
all = true
}

triage {
suppress {
vulnerabilites = [
"GO-2024-2611", #alias
]
}
}
}

0 comments on commit a457718

Please sign in to comment.