GitHub Actions "Artifact storage quota has been hit" – Fix (Short Guide)
Check Usage:
Go to:
https://github.com/<owner>/<repo>/settings/actions
Delete Artifacts:
Use GitHub CLI:
bash
CopyEdit
gh run list gh run delete <run-id>
Clear Cache:
bash
CopyEdit
gh cache list gh cache delete <cache-id>
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>
Wait a few hours:
GitHub may take time to update usage.
Still stuck?
👉 Contact GitHub Support