From 93c2619907a019a641ee1e68d3df56c05ff4e9ce Mon Sep 17 00:00:00 2001 From: hartsock Date: Fri, 17 Jul 2026 00:22:15 +0000 Subject: [PATCH] ci: route Linux CI to in-home ARC runner via GMF_LINUX_RUNNER --- .github/workflows/safety-gate.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/safety-gate.yml b/.github/workflows/safety-gate.yml index 6854312..07f71f0 100644 --- a/.github/workflows/safety-gate.yml +++ b/.github/workflows/safety-gate.yml @@ -15,7 +15,7 @@ permissions: jobs: secrets-scan: name: Scan for secrets - runs-on: ubuntu-latest + runs-on: ${{ vars.GMF_LINUX_RUNNER || 'ubuntu-latest' }} steps: - uses: actions/checkout@v4 with: @@ -32,7 +32,7 @@ jobs: forbidden-patterns: name: Check forbidden patterns - runs-on: ubuntu-latest + runs-on: ${{ vars.GMF_LINUX_RUNNER || 'ubuntu-latest' }} steps: - uses: actions/checkout@v4 @@ -65,7 +65,7 @@ jobs: rust-checks: name: Rust lint and test - runs-on: ubuntu-latest + runs-on: ${{ vars.GMF_LINUX_RUNNER || 'ubuntu-latest' }} steps: - uses: actions/checkout@v4