From f2292f070899b4dc1a1fdf9f8ba58be57257f069 Mon Sep 17 00:00:00 2001 From: Paulina Date: Tue, 7 Apr 2026 12:29:06 +0200 Subject: [PATCH] fix: override runner to ubuntu-latest for public repo CI The CI Standard Checks workflow has been timing out after 24 hours since March 27. The reusable workflow defaults to ci-base-scale-set (self-hosted runners), which are restricted to private repos. This change explicitly specifies ubuntu-latest (GitHub-hosted runners) for this public repository. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci-standard-checks.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-standard-checks.yml b/.github/workflows/ci-standard-checks.yml index 7bbf256..ba1d2d9 100644 --- a/.github/workflows/ci-standard-checks.yml +++ b/.github/workflows/ci-standard-checks.yml @@ -15,3 +15,5 @@ on: jobs: ci-standard-checks: uses: Typeform/.github/.github/workflows/ci-standard-checks-workflow.yaml@v1 + with: + runner: ubuntu-latest