Skip to content

Commit

Permalink
fix: add .grype.yaml (#3834)
Browse files Browse the repository at this point in the history
**Summary**
CVE-2024-11053 https://curl.se/docs/CVE-2024-11053.html (severity Low)
was published on Dec 11, 2024 and began failing CI builds on open-core
on Dec 13, 2024 when it appeared in `grype` apparently misclassified as
a critical vulnerability.

The severity reported on the CVE is "Low" so it should not fail builds.
Add a `.grype.yaml` file to ignore this CVE until grype is updated.
  • Loading branch information
scanny authored Dec 16, 2024
1 parent 3b718ec commit b092fb7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -398,3 +398,4 @@ jobs:
image: "unstructured:dev"
severity-cutoff: critical
only-fixed: true
output-format: table
2 changes: 2 additions & 0 deletions .grype.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ignore:
- vulnerability: CVE-2024-11053
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.16.12-dev0
## 0.16.12-dev1

### Enhancements

Expand Down
2 changes: 1 addition & 1 deletion unstructured/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.16.12-dev0" # pragma: no cover
__version__ = "0.16.12-dev1" # pragma: no cover

0 comments on commit b092fb7

Please sign in to comment.