Replies: 3 comments 1 reply
|
This is most likely an account-side storage accounting issue rather than a workflow configuration problem. Normally, deleting GitHub Actions artifacts and caches frees storage after GitHub recalculates usage, which usually happens within 6–12 hours (though it can occasionally take longer). If your repositories show 0 artifacts, 0 caches, and no GitHub Packages, but your billing page still reports 0.5 GB used, the usage record may be stale or there may be storage that isn't visible through the normal UI. Unfortunately, there is no user-accessible way to force a storage recalculation. The recommended next steps are:
At that point, only GitHub Support can investigate and clear any orphaned or incorrectly accounted storage records. |
|
Based on the information provided, this appears to be a backend storage synchronization issue rather than a problem with your workflow. If all repositories report 0 artifacts, 0 caches, and no GitHub Packages, the artifact upload should normally succeed after the storage usage is recalculated. Since the billing page still shows the account at its storage limit, it's possible that the storage accounting hasn't been updated or an orphaned storage record is still being counted. A few questions that may help narrow it down:
If everything has already been cleaned up and the usage remains unchanged after 24–48 hours, I'd recommend opening a GitHub Support ticket with the workflow run ID ( |
|
The account-level diagnosis is plausible, but one distinction changes what is GitHub documents a 6–12 hour update window after artifact deletion. Deleting an The referenced repository/run is not publicly readable, so only an API call gh api --paginate -X GET user/repos \
-f affiliation=owner \
-f per_page=100 \
--jq '.[].full_name' |
while IFS= read -r repo; do
count=$(gh api "repos/$repo/actions/artifacts?per_page=1" --jq .total_count)
if [ "$count" -gt 0 ]; then
printf '%s\t%s artifacts\n' "$repo" "$count"
fi
doneThat checks all repositories owned by the authenticated personal account, If the owner-scoped artifact result is empty, the package inventory is empty,
Adding a payment method or a non-zero Actions budget can temporarily unblock Official references: |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Question
💬 Feature/Topic Area
Other
Discussion Details
Hello GitHub community,
I’m troubleshooting a GitHub Actions storage-quota block on the personal account kyotothe.
Could a hidden or stale shared Actions/Packages storage record cause this when visible artifacts and packages are empty? What is the correct way to reconcile or escalate the account-level quota?
Thank you.
All reactions