github-actions
GitHub API rate limit hit in CI
rate limit|API rate limit exceeded|403.*rate.*limiting
Fixes
- 1.Use GITHUB_TOKEN instead of PAT for higher rate limits (1000/hr vs 5000/hr)
- 2.Add retry logic with exponential backoff for API calls
- 3.Cache API responses (e.g., release assets) to reduce call frequency
cigithub-actionsrate-limit
Related Errors
github-actions3 fixes
GitHub Actions step failed with non-zero exit code
Error.*Process completed with exit code [1-9]|exit code.*non-zero
- •Check the failing step's logs for the actual error message above the exit code
- •Add 'continue-on-error: true' temporarily to isolate which step fails
github-actions3 fixes
CI pipeline job timeout
The job.*exceeded.*maximum.*time|timeout.*exceeded.*minutes
- •Increase timeout-minutes on the job or specific step
- •Add caching for dependencies (actions/cache) to speed up installs
github-actions3 fixes
GitHub Actions artifact not found
Artifact.*not found|download-artifact.*failed|No artifacts found
- •Ensure upload-artifact and download-artifact use matching artifact names
- •Check that the upload step ran successfully in a previous job