From fca4b8f95bdb5aa5a543326db978edd49431296a Mon Sep 17 00:00:00 2001 From: cvince Date: Fri, 22 May 2026 11:44:48 -0700 Subject: [PATCH] ci: switch CI workflows to the latchkey-small runner Mirrors the monorepo change from cvince/capy#295 (latchkey runner). The old cli-mirror.sh flow lost this change between PR #203's rsync push and the subsequent v0.5.0 release push, so capy-cli/main fell back to ubuntu-latest. Restoring directly here as the first PR after the submodule migration. --- .github/workflows/bump-homebrew.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bump-homebrew.yml b/.github/workflows/bump-homebrew.yml index add5886..e9ef823 100644 --- a/.github/workflows/bump-homebrew.yml +++ b/.github/workflows/bump-homebrew.yml @@ -13,7 +13,7 @@ jobs: bump: # Skip pre-releases — they shouldn't push to the stable tap. if: github.event_name == 'workflow_dispatch' || github.event.release.prerelease == false - runs-on: ubuntu-latest + runs-on: latchkey-small steps: # npm sometimes lags a release event by a few seconds. Give it a # breather before brew bump-formula-pr fetches the tarball. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb48fc0..c2d9e09 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: latchkey-small steps: - uses: actions/checkout@v4