4

When i try to run a github action (it will build android apk) it showing an error

You've used 100% of included services for GitHub Storage (GitHub Actions and Packages). GitHub Actions and Packages won’t work until a monthly spending limit is set.

Storage for Actions and Packages So i delete all Artifacts files but after i delete each Artifacts the Storage for Actions is not reducing
For example i delete 20 Artifacts file and each contains 20mb. Which means 400Mb and when i check the "Storage for Actions" it is still showing it is overflowed
Why this is happening?

Midhilaj
  • 4,905
  • 9
  • 45
  • 88
  • Could you please elaborate on what files have been removed? The stats are refreshed on a scheduled basis. After some time it should reflect the current state. You can also reduce the retention time of the artifacts to avoid exceeding the quota in the future. https://github.blog/changelog/2020-10-08-github-actions-ability-to-change-retention-days-for-artifacts-and-logs/ – Marcin Kłopotek Nov 03 '20 at 17:11
  • I updated the question with details please check – Midhilaj Feb 06 '21 at 11:55
  • 1
    Do we know what the schedule for the usage recalculation is? – MarioTheHedgehog Oct 01 '21 at 14:21

1 Answers1

1

I encountered an identical problem. After looking at the docs, it seems it takes one hour for storage usage to update.

From the documentation:

Storage usage data synchronizes every hour.

  • I have removed all the artifacts, workflow runs using github API, and waited for 6-7hours, but still, there's no change in the `Storage for Actions and Packages` section in billing page. – sat Aug 04 '23 at 17:00
  • The email that GitHub sends out when the limit exceeded also mentions a date when usage will be reset, but it makes sense that you should be able to delete unneeded Action and Package files and reclaim space in a more timely way. – Jacob Wan Aug 06 '23 at 22:45