-
Why are you starting this discussion?Bug What GitHub Actions topic or product is this about?Misc Discussion DetailsI set up this action configuration a long time ago and haven't run it for a long time. A few days ago, I planned to release it and try to run it, but it failed. The action status has always been displayed as queue status. Please help me take a look |
Beta Was this translation helpful? Give feedback.
Answered by
Genious07
Sep 6, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there! I took a look at your GitHub Actions workflow for the release-triggered container build. The main issue is that it's set to run on ubuntu-20.04, which GitHub fully deprecated back in April 2025— that's why it's stuck in the queue with no runner picking it up. No more runners available for that label.
To fix it:
Update your .github/workflows/release.yml file: Change runs-on: ubuntu-20.04 to runs-on: ubuntu-latest (which points to Ubuntu 24.04 now) or ubuntu-22.04 if you need an older version for compatibility.
While you're at it, bump the action versions for better security and features:
actions/checkout@v2 → actions/checkout@v4
docker/login-action@... → docker/login-action@v3
do…