From 1490daa7cab43a48b021cf6e92646c7a2d3071fa Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Wed, 10 Jun 2026 19:12:32 -0500 Subject: [PATCH] Update runner configuration to use GitHub-hosted runners for checks --- .github/workflows/main_matrix.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main_matrix.yml b/.github/workflows/main_matrix.yml index 12b2f0e55..e5c75d2cc 100644 --- a/.github/workflows/main_matrix.yml +++ b/.github/workflows/main_matrix.yml @@ -82,8 +82,9 @@ jobs: fail-fast: false matrix: check: ${{ fromJson(needs.setup.outputs.check) }} - # Use 'arctastic' self-hosted runner pool when checking in the main repo - runs-on: ${{ github.repository_owner == 'meshtastic' && 'arctastic' || 'ubuntu-latest' }} + # Runs on GitHub-hosted runners so checks don't compete with builds for the + # self-hosted 'arctastic' pool (which builds use). + runs-on: ubuntu-latest if: ${{ github.event_name != 'workflow_dispatch' && github.repository == 'meshtastic/firmware' }} steps: - uses: actions/checkout@v6