We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c33856 commit e28b5a3Copy full SHA for e28b5a3
.github/workflows/scripts/cleanup_ghcr_instance_images.py
@@ -380,7 +380,9 @@ def delete_package_version(
380
details = exc.read().decode("utf-8", errors="replace")
381
if exc.code == 404:
382
# Deletions can race across concurrent jobs; treat not found as already deleted.
383
- print(f"WARNING: Version {version_id} already deleted or unavailable (404).")
+ print(
384
+ f"WARNING: Version {version_id} already deleted or unavailable (404)."
385
+ )
386
return False
387
raise SystemExit(
388
f"GitHub API request failed: DELETE {url} -> {exc.code} {details}"
0 commit comments