Skip to content

Commit b092fb7

Browse files
authored
fix: add .grype.yaml (#3834)
**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.
1 parent 3b718ec commit b092fb7

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,3 +398,4 @@ jobs:
398398
image: "unstructured:dev"
399399
severity-cutoff: critical
400400
only-fixed: true
401+
output-format: table

.grype.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ignore:
2+
- vulnerability: CVE-2024-11053

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.16.12-dev0
1+
## 0.16.12-dev1
22

33
### Enhancements
44

unstructured/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.16.12-dev0" # pragma: no cover
1+
__version__ = "0.16.12-dev1" # pragma: no cover

0 commit comments

Comments
 (0)