File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,11 @@ RUN set -e && dnf clean all && rm -rf /var/cache/dnf/* \
34
34
# - https://data.safetycli.com/v/70612/97c/ \
35
35
# NOTE: This ignored vulnerability (71064) was detected in requests, \
36
36
# but the upgraded version doesn't support the use case (protocol we are using).\
37
- # Ref: https://github.com/operator-framework/ansible-operator-plugins/pull/67#issuecomment-2189164688
38
- && pipenv check --ignore 70612 --ignore 71064 \
37
+ # Ref: https://github.com/operator-framework/ansible-operator-plugins/pull/67#issuecomment-2189164688 \
38
+ # NOTE: This ignored vulnerability (73302) was detected in ansible-core, \
39
+ # but hasn't been fixed upstream yet.\
40
+ # Ref: https://github.com/operator-framework/ansible-operator-plugins/issues/109 \
41
+ && pipenv check --ignore 70612 --ignore 71064 --ignore 73302 \
39
42
&& dnf remove -y gcc libffi-devel openssl-devel python3.12-devel \
40
43
&& dnf clean all \
41
44
&& rm -rf /var/cache/dnf
Original file line number Diff line number Diff line change @@ -31,7 +31,10 @@ RUN set -e && dnf clean all && rm -rf /var/cache/dnf/* \
31
31
# NOTE: This ignored vulnerability (71064) was detected in requests, \
32
32
# but the upgraded version doesn't support the use case (protocol we are using).\
33
33
# Ref: https://github.com/operator-framework/ansible-operator-plugins/pull/67#issuecomment-2189164688
34
- && pipenv check --ignore 70612 --ignore 71064 \
34
+ # NOTE: This ignored vulnerability (73302) was detected in ansible-core, \
35
+ # but hasn't been fixed upstream yet.\
36
+ # Ref: https://github.com/operator-framework/ansible-operator-plugins/issues/109 \
37
+ && pipenv check --ignore 70612 --ignore 71064 --ignore 73302 \
35
38
&& dnf remove -y gcc libffi-devel openssl-devel python3.12-devel \
36
39
&& dnf clean all \
37
40
&& rm -rf /var/cache/dnf
You can’t perform that action at this time.
0 commit comments