Skip to content
Discussion options

You must be logged in to vote

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…

Replies: 1 comment 1 reply

This comment was marked as off-topic.

@tu6ge
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug GitHub or a GitHub feature is not working as intended Actions Build, test, and automate your deployment pipeline with world-class CI/CD Misc General discussions about GitHub Actions that don't fit other found themes.
2 participants