Skip to content

Commit a457718

Browse files
added cve exception (#31)
Signed-off-by: Michael Wilkerson <mwilkerson@hashicorp.com>
1 parent 8346432 commit a457718

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

scan.hcl

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Copyright (c) HashiCorp, Inc.
2+
# SPDX-License-Identifier: MPL-2.0
3+
4+
# Configuration for security scanner.
5+
# Run on PRs and pushes to `main` and `release/**` branches.
6+
# See .github/workflows/security-scan.yml for CI config.
7+
8+
# To run manually, install scanner and then run `scan repository .`
9+
10+
# Scan results are triaged via the GitHub Security tab for this repo.
11+
# See `security-scanner` docs for more information on how to add `triage` config
12+
# for specific results or to exclude paths.
13+
14+
# .release/security-scan.hcl controls scanner config for release artifacts, which
15+
# unlike the scans configured here, will block releases in CRT.
16+
17+
repository {
18+
go_modules = true
19+
npm = true
20+
osv = true
21+
22+
secrets {
23+
all = true
24+
}
25+
26+
triage {
27+
suppress {
28+
vulnerabilites = [
29+
"GO-2024-2611", #alias
30+
]
31+
}
32+
}
33+
}

0 commit comments

Comments
 (0)