From bff9014cf8f926e79301a3823b962a6083c35a18 Mon Sep 17 00:00:00 2001 From: Hugh Hackman Date: Thu, 19 Mar 2026 20:11:51 +0000 Subject: [PATCH] fix: update runner label from local-ubuntu-latest to runners-privilegedescalation ARC runner scale set was recreated on 2026-03-19 with label `runners-privilegedescalation` but all shared workflows still referenced `local-ubuntu-latest`. This label mismatch caused startup_failure on every Release workflow and queued CI jobs with no runner to pick them up. Updates all 4 workflows and the actionlint config to match the current ARC runner scale set label. Closes #27 --- .github/actionlint.yaml | 2 +- .github/workflows/ci-health-check.yaml | 2 +- .github/workflows/plugin-ci.yaml | 2 +- .github/workflows/plugin-release.yaml | 2 +- .github/workflows/pr-validation.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml index 816e4fb..05ca3b0 100644 --- a/.github/actionlint.yaml +++ b/.github/actionlint.yaml @@ -1,3 +1,3 @@ self-hosted-runner: labels: - - local-ubuntu-latest + - runners-privilegedescalation diff --git a/.github/workflows/ci-health-check.yaml b/.github/workflows/ci-health-check.yaml index 7e62110..bf49be9 100644 --- a/.github/workflows/ci-health-check.yaml +++ b/.github/workflows/ci-health-check.yaml @@ -7,7 +7,7 @@ on: jobs: health-check: - runs-on: local-ubuntu-latest + runs-on: runners-privilegedescalation steps: - name: Checkout repository uses: actions/checkout@v6 diff --git a/.github/workflows/plugin-ci.yaml b/.github/workflows/plugin-ci.yaml index 20fa45a..2898d32 100644 --- a/.github/workflows/plugin-ci.yaml +++ b/.github/workflows/plugin-ci.yaml @@ -11,7 +11,7 @@ on: jobs: ci: - runs-on: local-ubuntu-latest + runs-on: runners-privilegedescalation timeout-minutes: 10 steps: diff --git a/.github/workflows/plugin-release.yaml b/.github/workflows/plugin-release.yaml index 112c6e3..efbccf9 100644 --- a/.github/workflows/plugin-release.yaml +++ b/.github/workflows/plugin-release.yaml @@ -34,7 +34,7 @@ jobs: release: needs: ci - runs-on: local-ubuntu-latest + runs-on: runners-privilegedescalation timeout-minutes: 10 steps: diff --git a/.github/workflows/pr-validation.yaml b/.github/workflows/pr-validation.yaml index 10dc4b5..ee0e1d1 100644 --- a/.github/workflows/pr-validation.yaml +++ b/.github/workflows/pr-validation.yaml @@ -6,7 +6,7 @@ on: jobs: validate: - runs-on: local-ubuntu-latest + runs-on: runners-privilegedescalation timeout-minutes: 5 steps: