From fb9ad894f4d5375f02174bff123b11c174474bc8 Mon Sep 17 00:00:00 2001 From: tkgstrator <29420801+tkgstrator@users.noreply.github.com> Date: Fri, 4 Sep 2026 02:29:55 +0000 Subject: [PATCH] ci: move the release validation job off the retired ubuntu-20.04 runner GitHub removed the ubuntu-20.04 hosted image, so this job never gets a runner: it sits QUEUED forever and every PR stays UNSTABLE behind a check that can neither pass nor fail. Every other job in the repo is already on ubuntu-24.04 or ubuntu-latest; this brings the last one in line. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01DLik2h14rdD7Ks6v5CHRGv --- .github/workflows/release_validation.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_validation.yaml b/.github/workflows/release_validation.yaml index bd4e19c..55aadcf 100644 --- a/.github/workflows/release_validation.yaml +++ b/.github/workflows/release_validation.yaml @@ -6,7 +6,7 @@ on: jobs: validation: name: Validation - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - name: Checkout uses: actions/checkout@v4