We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46ff73b commit ee26a54Copy full SHA for ee26a54
.config/requirements-lock.txt
@@ -66,7 +66,7 @@ referencing==0.37.0
66
# ansible-lint
67
# jsonschema
68
# jsonschema-specifications
69
-rpds-py==0.29.0
+rpds-py==0.30.0
70
# via
71
72
# referencing
src/ansiblelint/config.py
@@ -316,7 +316,7 @@ def get_version_warning() -> str:
316
"https://api.github.com/repos/ansible/ansible-lint/releases/latest"
317
)
318
try:
319
- with urllib.request.urlopen(release_url) as url: # noqa: S310
+ with urllib.request.urlopen(release_url) as url:
320
data = json.load(url)
321
with open(cache_file, "w", encoding="utf-8") as f:
322
json.dump(data, f)
0 commit comments