File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments