79668422

Date: 2025-06-17 03:07:34
Score: 0.5
Natty:
Report link

GitHub Actions "Artifact storage quota has been hit" – Fix (Short Guide)

  1. Check Usage:
    Go to:
    https://github.com/<owner>/<repo>/settings/actions

  2. Delete Artifacts:
    Use GitHub CLI:

    bash
    

    CopyEdit

    gh run list gh run delete <run-id>

  3. Clear Cache:

    bash
    

    CopyEdit

    gh cache list gh cache delete <cache-id>

  4. Use API if needed:
    List & delete:

    bash
    

    CopyEdit

    curl -H "Authorization: token TOKEN" https://api.github.com/repos/<owner>/<repo>/actions/artifacts curl -X DELETE https://api.github.com/repos/<owner>/<repo>/actions/artifacts/<id>

  5. Wait a few hours:
    GitHub may take time to update usage.

  6. Still stuck?
    👉 Contact GitHub Support

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Husnain Ansari