Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(security-scanner): add support for Red Hat UBI images and fix typo #21912

Merged
merged 3 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .release/security-scan.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

container {
dependencies = true
alpine_secdb = true
osv = true

secrets {
matchers {
Expand All @@ -36,8 +36,7 @@ container {
# periodically cleaned up to remove items that are no longer found by the scanner.
triage {
suppress {
# N.b. `vulnerabilites` is the correct spelling for this tool.
vulnerabilites = [
vulnerabilities = [
sarahalsmiller marked this conversation as resolved.
Show resolved Hide resolved
"CVE-2024-8096", # [email protected],
"CVE-2024-9143", # [email protected],
]
Expand Down Expand Up @@ -79,8 +78,7 @@ binary {
# periodically cleaned up to remove items that are no longer found by the scanner.
triage {
suppress {
# N.b. `vulnerabilites` is the correct spelling for this tool.
vulnerabilites = [
vulnerabilities = [
]
paths = [
"internal/tools/proto-gen-rpc-glue/e2e/consul/*",
Expand Down
3 changes: 1 addition & 2 deletions scan.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ repository {
# periodically cleaned up to remove items that are no longer found by the scanner.
triage {
suppress {
# N.b. `vulnerabilites` is the correct spelling for this tool.
vulnerabilites = [
vulnerabilities = [
]
paths = [
"internal/tools/proto-gen-rpc-glue/e2e/consul/*",
Expand Down
Loading