{% if "vulnerabilities" in (unsupported_features or []) %}

Vulnerability reporting is not supported by this provider.

{% elif vulns %}
{% for v in vulns %} {% endfor %}
SeverityNameSourceLocationState
{{ v.severity }} {{ v.name }} {% if v.branch_status == "fixed" %}
fixed in branch{% endif %} {% if v.branch_status == "outdated_branch" %}
run branch pipeline{% endif %} {% if v.branch_status == "outdated_default" %}
run default pipeline{% endif %} {% if v.branch_status == "introduced" %}
introduced in branch{% endif %} {% if v.report_stale %}
{% if is_stale_too_long(v) %}stale too long{% else %}stale report{% endif %} {% endif %}
{{ v.source }} {{ v.location or "" }} {{ v.state }}
{% else %}

No vulnerabilities.

{% endif %}