From fe2c5632111ca1a63fda433b7cdaa646c2c1a270 Mon Sep 17 00:00:00 2001 From: Michael Heller <21163552+mdheller@users.noreply.github.com> Date: Thu, 30 Jul 2026 15:33:49 -0400 Subject: [PATCH] ci: repoint gating workflows to self-hosted runners GitHub-hosted Actions minutes are exhausted for the org until ~Aug 1-2, leaving ubuntu-latest jobs queued indefinitely. Point the PR-gating jobs (ci: rust/docs-integrity; ts-ci) at the new org self-hosted runner pool so CI can actually execute and go green. docker-publish stays on hosted. --- .github/workflows/ci.yml | 4 ++-- .github/workflows/ts-ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0af400b..73289e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ on: jobs: rust: - runs-on: ubuntu-latest + runs-on: [self-hosted, linux, x64] steps: - uses: actions/checkout@v4 @@ -28,7 +28,7 @@ jobs: run: cargo test --workspace docs-integrity: - runs-on: ubuntu-latest + runs-on: [self-hosted, linux, x64] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/ts-ci.yml b/.github/workflows/ts-ci.yml index d31affe..0685a8c 100644 --- a/.github/workflows/ts-ci.yml +++ b/.github/workflows/ts-ci.yml @@ -30,7 +30,7 @@ permissions: jobs: build-and-verify-dist: - runs-on: ubuntu-latest + runs-on: [self-hosted, linux, x64] steps: - uses: actions/checkout@v4 with: @@ -107,7 +107,7 @@ jobs: # the engine — the artifact's source of truth — was the one copy where drift went unnoticed. # Runs on every PR (cheap, no path filter) so a re-vendor can never land unverified. kko-provenance: - runs-on: ubuntu-latest + runs-on: [self-hosted, linux, x64] steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4