Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,14 @@ jobs:
uses: actions/setup-go@v6
with:
go-version: '1.25'
# This workflow checks the api repo out into ./api (path: api above),
# so setup-go's default go.sum lookup at the checkout root misses and
# the module cache is never restored — every run cold-downloads the
# full dep tree (~2 min), leaving the test step exposed to transient
# runner blips (seen 2026-06-03: a cold-download run SIGTERM'd and the
# deploy only landed on a warm re-run). Point the cache key at the real
# go.sum so deps are restored from cache.
cache-dependency-path: api/go.sum

- name: Stage sibling repos for go.mod replace (../common, ../proto)
# The api repo's go.mod uses `replace instant.dev/common => ../common`
Expand Down
Loading