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
This commit is contained in:
2026-03-19 20:11:51 +00:00
parent 7fa962ec0f
commit bff9014cf8
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
self-hosted-runner:
labels:
- local-ubuntu-latest
- runners-privilegedescalation
+1 -1
View File
@@ -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
+1 -1
View File
@@ -11,7 +11,7 @@ on:
jobs:
ci:
runs-on: local-ubuntu-latest
runs-on: runners-privilegedescalation
timeout-minutes: 10
steps:
+1 -1
View File
@@ -34,7 +34,7 @@ jobs:
release:
needs: ci
runs-on: local-ubuntu-latest
runs-on: runners-privilegedescalation
timeout-minutes: 10
steps:
+1 -1
View File
@@ -6,7 +6,7 @@ on:
jobs:
validate:
runs-on: local-ubuntu-latest
runs-on: runners-privilegedescalation
timeout-minutes: 5
steps: