File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -135,6 +135,14 @@ jobs:
135135 uses : actions/setup-go@v6
136136 with :
137137 go-version : ' 1.25'
138+ # This workflow checks the api repo out into ./api (path: api above),
139+ # so setup-go's default go.sum lookup at the checkout root misses and
140+ # the module cache is never restored — every run cold-downloads the
141+ # full dep tree (~2 min), leaving the test step exposed to transient
142+ # runner blips (seen 2026-06-03: a cold-download run SIGTERM'd and the
143+ # deploy only landed on a warm re-run). Point the cache key at the real
144+ # go.sum so deps are restored from cache.
145+ cache-dependency-path : api/go.sum
138146
139147 - name : Stage sibling repos for go.mod replace (../common, ../proto)
140148 # The api repo's go.mod uses `replace instant.dev/common => ../common`
You can’t perform that action at this time.
0 commit comments