Github Actions stuck at "Queued" for more than 24 hours #56360
-
Select Topic AreaBug BodyThe Actions for my repository https://github.com/doorgan/sourceror are stuck at "Queued" and they don't seem to be going to run any time soon: https://github.com/doorgan/sourceror/actions/runs/5060935883/jobs/9114456314 There haven't been any changes to the Actions configuration, and there hasn't been an Actions run in more than a month(last one failed due to a GH issue). Is there anything I can do to fix it? Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
That there hasn't been any change is exactly the problem: Your jobs used |
Beta Was this translation helpful? Give feedback.
-
I came across this issue and I'm very surprised that runners get depreciated as it impacts reproducibility. So FYI ... If runners (environments) are depreciated from time to time that means that it may not be possible to reproduce an old build. I take the two fundamental tasks for a build system are:
If it is not possible to rebuild using the same environment, then reproducibility is gone. Another note ... if the build system does not provide a build number (run and attempt numbers are not build numbers) then traceability is gone too. |
Beta Was this translation helpful? Give feedback.
-
A second thought ... I think this is a bug as:
|
Beta Was this translation helpful? Give feedback.
That there hasn't been any change is exactly the problem: Your jobs used
ubuntu-18.04
runners. Those have been deprecated for a while and were removed in April, and now your jobs queue endlessly because they simply can't get a runner. You'll have to update the jobs to use currently supported runners (best switch right toubuntu-22.04
, if possible).See: https://github.blog/changelog/2022-08-09-github-actions-the-ubuntu-18-04-actions-runner-image-is-being-deprecated-and-will-be-removed-by-12-1-22/