From a0850f7e350d5b74b9536588192f6840a2d8a490 Mon Sep 17 00:00:00 2001 From: Viktor Torstensson Date: Tue, 16 Dec 2025 16:43:09 +0100 Subject: [PATCH] workflow: replace `swapserverrpc` in lit-setup In order for the LiT CI jobs to use the `swapserverrpc` protos that exist on the latest `master` version of the `loop` repo, we need to update the `lit-setup` action to replace the litd `swapserverrpc` dependency with the latest version that exists in the `loop` repo. --- .github/actions/lit-setup/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/lit-setup/action.yml b/.github/actions/lit-setup/action.yml index 6bd884740..920a3871e 100644 --- a/.github/actions/lit-setup/action.yml +++ b/.github/actions/lit-setup/action.yml @@ -20,6 +20,7 @@ runs: run: | go mod edit -replace=github.com/lightninglabs/loop=../ go mod edit -replace=github.com/lightninglabs/loop/looprpc=../looprpc + go mod edit -replace=github.com/lightninglabs/loop/swapserverrpc=../swapserverrpc go mod tidy shell: bash