GitHub Actions "The job was not started because your account has insufficient minutes"
GitHub-hosted runners draw from a monthly included-minutes allowance scaled by your plan. When the allowance and any paid overage cap are exhausted, GitHub refuses to start the job instead of queuing it.
What this error means
Jobs on GitHub-hosted runners never start; the run shows the job failed immediately with a minutes message.
The job was not started because your account has insufficient minutes.
Add a payment method or increase your spending limit to continue using GitHub Actions.Common causes
Monthly included minutes consumed
Free and paid plans include a fixed number of minutes per cycle; private-repo jobs on macOS/Windows multiply consumption (10x/2x).
No payment method or spending limit of $0
Without a payment method or with the Actions spending limit set to $0, GitHub cannot bill overage so jobs are blocked once included minutes run out.
Expensive runner OS multiplier
macOS jobs consume 10x and Windows 2x of wall-clock minutes, draining the allowance far faster than Linux.
How to fix it
Raise the Actions spending limit or add a payment method
- Open Settings > Billing and plans > Spending limits (org or personal account).
- Add a payment method if none exists.
- Set an Actions spending limit above $0 (or unlimited) so overage minutes can bill.
- Re-run the failed jobs.
Reduce minute consumption
- Move jobs from macOS/Windows to Linux where possible (1x multiplier).
- Add concurrency and path filters so fewer redundant runs start.
- Cache dependencies to shorten job duration.
Use managed runners without GitHub minute caps
- Latchkey managed runners bill your own compute and are not subject to GitHub-hosted included-minute caps.
- Point runs-on at the Latchkey runner label so jobs stop competing for the GitHub allowance.
jobs:
build:
runs-on: latchkey-smallHow to prevent it
- Monitor minute usage in the billing dashboard before the cycle ends.
- Prefer Linux runners and cache aggressively to stretch the allowance.