Use SafeLoader with yaml.load
Python YAML parsing should use `SafeLoader` when calling `yaml.load`.
#Metadata
#Why it matters
Unsafe YAML deserialization can instantiate arbitrary Python objects and lead to unexpected code paths.
#Remediation
Prefer `yaml.safe_load` or pass `Loader=yaml.SafeLoader` explicitly for trusted-safe parsing behavior.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/python/py.security.insecure-yaml-load.rule.yaml.