We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88ba8f0 commit 0af1a53Copy full SHA for 0af1a53
3 files changed
.gitignore
@@ -28,3 +28,4 @@ _site/
28
vendor
29
.cfn_guard_out/
30
.trivy_out/
31
+.sbom/
.grype.yaml
@@ -0,0 +1,3 @@
1
+ignore:
2
+ # path-to-regexp - dependency of aws-sdk-client-mock
3
+ - vulnerability: GHSA-j3q9-mxjg-w52f
.pre-commit-config.yaml
@@ -23,6 +23,14 @@ repos:
23
24
- repo: local
25
hooks:
26
+ - id: grype-scan-local
27
+ name: Grype scan local changes
+ entry: make
+ args: ["grype-scan-local"]
+ language: system
+ pass_filenames: false
32
+ always_run: true
33
+
34
- id: check-commit-signing
35
name: Check commit signing
36
description: Ensures that commits are GPG signed
0 commit comments