From a84f28b5e1eae3fbdee1d539ed2272df8bd1ba36 Mon Sep 17 00:00:00 2001 From: pixie-agent Date: Mon, 22 Jun 2026 11:18:32 +0200 Subject: [PATCH] =?UTF-8?q?ci(codeql):=20fix=20go-analysis=20runner=20labe?= =?UTF-8?q?l=20(oracle-16cpu=20=E2=86=92=20oracle-vm-16cpu)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CodeQL 'go' job was on `oracle-16cpu-64gb-x86-64` — a label that doesn't exist on this repo's runners — so it queued forever (12h+/16h+, older runs auto-cancelled at the 24h cap). The python/javascript jobs already use the correct `oracle-vm-16cpu-64gb-x86-64`. Align go to match. (Same upstream-label trap that's bitten the vizier/bazel jobs.) --- .github/workflows/codeql.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml index 02197af2a75..62a7ab3c23b 100644 --- a/.github/workflows/codeql.yaml +++ b/.github/workflows/codeql.yaml @@ -10,7 +10,7 @@ permissions: contents: read jobs: analyze-go: - runs-on: oracle-16cpu-64gb-x86-64 + runs-on: oracle-vm-16cpu-64gb-x86-64 permissions: actions: read contents: read