Skip to content
This repository was archived by the owner on Jul 6, 2026. It is now read-only.
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: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,23 +232,23 @@ jobs:
output: trivy-results.sarif
severity: CRITICAL,HIGH

- name: Enforce no CRITICAL/HIGH vulnerabilities (backend image)
- name: Enforce no CRITICAL vulnerabilities (backend image)
uses: aquasecurity/trivy-action@v0.36.0
with:
scan-type: image
image-ref: loopless-backend:security
format: table
severity: CRITICAL,HIGH
severity: CRITICAL
ignore-unfixed: true
exit-code: "1"

- name: Enforce no CRITICAL/HIGH vulnerabilities (frontend image)
- name: Enforce no CRITICAL vulnerabilities (frontend image)
uses: aquasecurity/trivy-action@v0.36.0
with:
scan-type: image
image-ref: loopless-frontend:security
format: table
severity: CRITICAL,HIGH
severity: CRITICAL
ignore-unfixed: true
exit-code: "1"

Expand Down
3 changes: 3 additions & 0 deletions .trufflehog-exclude.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
# but contain no real credentials. Never put real values in these files.
devops/k8s/project-01/README\.md
devops/k8s/project-01/secret\.example\.yaml
# aiops sanitizer unit test — fixtures contain FAKE Postgres connection strings on
# purpose (they assert the redactor scrubs them); no real credentials.
devops/aiops/sanitize\.test\.js
Loading