github-actions
CI pipeline job timeout
The job.*exceeded.*maximum.*time|timeout.*exceeded.*minutes
Fixes
- 1.Increase timeout-minutes on the job or specific step
- 2.Add caching for dependencies (actions/cache) to speed up installs
- 3.Split long-running tests into parallel jobs using matrix strategy
cigithub-actionstimeout
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
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
github-actions3 fixes
CI permission denied error
Permission.*denied|EACCES|Resource not accessible by integration
- •Add permissions block to workflow: contents: write, packages: write, etc.
- •For fork PRs, use pull_request_target event with caution for write access