Failed to CreateArtifact: Artifact storage quota has been hit. Unable to upload any new artifacts #190225
Replies: 2 comments
-
|
This issue usually happens due to a delay in GitHub Actions storage recalculation, even after deleting artifacts and caches. GitHub recalculates artifact storage periodically (not instantly). total_count = 0 No caches exist The backend may still show old usage temporarily. you can try->
Sometimes it takes 24–48 hours, not just 6–12 hours.
Push a small commit or manually re-run a workflow: git commit --allow-empty -m "trigger workflow"
If this repo belongs to an organization: Go to Settings → Billing → Actions Verify if organization quota is exceeded -> Even if repo is clean, org-level quota can block uploads.
Double-check artifacts: gh api repos/CrescentEngg/OptiMate_Factory_Suite/actions/artifacts
Disable artifact upload step in your workflow:
If still not resolved This is likely a backend quota sync issue on GitHub’s side. --> In that case: Only GitHub Support can reset it Post in discussion or open a support ticket |
Beta Was this translation helpful? Give feedback.
-
|
The error "Failed to CreateArtifact: Artifact storage quota has been hit. Unable to upload any new artifacts" occurs when the artifact storage limit for GitHub Actions has been exceeded. This usually happens when many workflow runs store artifacts and they are not deleted automatically. Solution:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: build
path: dist/
retention-days: 1
After deleting old artifacts, the workflow should run successfully. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Why are you starting this discussion?
Question
What GitHub Actions topic or product is this about?
General
Discussion Details
My private repository GitHub Actions is blocked with:
Failed to CreateArtifact: Artifact storage quota has been hit. Unable to upload any new artifacts. Usage is recalculated every 6-12 hours.
I have already:
The quota still appears stuck and new workflows cannot upload artifacts.
Please refresh/reset the Actions artifact storage usage for the repository/account.
Repository:
CrescentEngg/OptiMate_Factory_Suite
Beta Was this translation helpful? Give feedback.
All reactions