From 7f6a9f465e9242fea83689059ac40e1cf3958120 Mon Sep 17 00:00:00 2001 From: Teodor Calin Date: Fri, 29 May 2026 13:07:46 -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 2b6ed99..92504d8 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'