만족

github action이 시작되지 않는 문제 (github action is infinitly queued) 본문

github action이 시작되지 않는 문제 (github action is infinitly queued)

기타 컴퓨터 지식 Satisfaction 2022. 4. 22. 02:16

지난 번 작성했던 github action이 됐다 안됐다 한다.

 

아예 터져버리는것도 아니고 queued상태로 몇시간째 있으니 답답하기만 하다.

 

원인

https://stackoverflow.com/questions/71027513/all-github-action-jobs-are-queued-and-never-running

 

all github action jobs are queued and never running

Updated: 2~3days After, my job is failed automatically with below message I have some trouble all github action jobs are queued and never executed. I have checked Github action status on statusgit...

stackoverflow.com

 

정확히는 알 수 없지만 저번에 한번 터진 뒤로 ubuntu 이미지에서 자주 이런 문제가 관찰된다고 한다.

 

해결법

내 경우엔 OS 버전에 딱히 의존적인 작업은 아니라서, 버전을 최신 버전을 사용하도록 바꿨다.

 

runs-on 값을 ubuntu-latest 로 변경하면 된다.

 

runs-on을 바꾸자마자 바로 in progress 상태가 되었다.



Comments