From dd5a76e34863f0845d238e424d0c273c3bedee97 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Thu, 12 Feb 2026 12:25:04 -0500 Subject: [PATCH] ci: update workflows to use local-ubuntu-latest runner - Changed ci.yaml from ubuntu-latest to local-ubuntu-latest - Changed release.yaml from ubuntu-latest to local-ubuntu-latest - e2e.yaml already using k3s-animaniacs (correct) This ensures all CI jobs run on on-prem runners instead of GitHub-hosted runners. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- .github/workflows/ci.yaml | 2 +- .github/workflows/release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d61e025..6602c8d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ on: jobs: lint-and-test: - runs-on: ubuntu-latest + runs-on: local-ubuntu-latest timeout-minutes: 10 steps: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8a34dc7..37d0f66 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,7 +7,7 @@ on: jobs: release: - runs-on: ubuntu-latest + runs-on: local-ubuntu-latest permissions: contents: write packages: write