From d132be4de50a978adf3e1c7c800e6d17f5ff80f0 Mon Sep 17 00:00:00 2001 From: Teodor Calin Date: Fri, 29 May 2026 13:07:40 -0700 Subject: [PATCH] fix(ci): checkout pilot-protocol/common (PILOT-349) Same pattern as the other ../common-replacing repos: ci.yml needs to checkout the common sibling so the replace directive in go.mod resolves at build time. CI has been red on main since the cascade.yml addition. Closes PILOT-349. --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f5b573f..45a1c69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,12 @@ jobs: repository: TeoSlayer/pilotprotocol path: web4 + - name: Checkout common + uses: actions/checkout@v4 + with: + repository: pilot-protocol/common + path: common + - uses: actions/setup-go@v5 with: go-version: '1.25'