From 630152270f4af63d4ac4ada2165cf12eb6a4f04c Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Thu, 12 Feb 2026 12:26:55 -0500 Subject: [PATCH] ci: update workflows to use local-ubuntu-latest runner Changed both CI and publish workflows to target local self-hosted runner instead of GitHub-hosted ubuntu-latest. Changes: - .github/workflows/ci.yml: runs-on: local-ubuntu-latest - .github/workflows/publish.yml: runs-on: local-ubuntu-latest Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c81692b..8fa2e51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: local-ubuntu-latest steps: - name: Checkout code diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3375985..2a9d5cc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,7 +8,7 @@ on: jobs: build-and-publish: - runs-on: ubuntu-latest + runs-on: local-ubuntu-latest steps: - name: Checkout code