-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Michael Wilkerson <[email protected]>
- Loading branch information
1 parent
8346432
commit a457718
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
] | ||
} | ||
} | ||
} |