all github action jobs are queued and never running

Viewed 2817

Updated:

2~3days After, my job is failed automatically with below message

enter image description here


I have some trouble all github action jobs are queued and never executed.

I have checked Github action status on statusgithub.com

but canont find something down or trouble sign.

With many searching, I found this thread

It looks so old trouble. so stranger. on other repository, github action is working well.

yaml

jobs:
  never-running-job:
    runs-on: node:16.13-alpine3.14
    steps:
      - uses: actions/checkout@v2
      - name: Use Node.js
        uses: actions/setup-node@v1
        with:
          node-version: '14.x'
      - name: preinstall
        run: yarn install
      - name: build app
        run: yarn run build
      - name: test app
        run: yarn run test

enter image description here enter image description here

1 Answers

Updated

After github action incident on Feb 5, It looks like (even now) not working on many images except 'ubuntu'.

Update runs-on tag to ubuntu latest, I pushed commit then finally github picks my ci/cd jobs.

I used node alpine image originally


old answers

I found incidents in github page when I faced that error.

Maybe that affects queued status.

enter image description here

Related