From 1b0fffe99e5b2170495370cf098805aacf9b5229 Mon Sep 17 00:00:00 2001 From: "mendral-app[bot]" <233154221+mendral-app[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 08:49:41 -0800 Subject: [PATCH] ci(release): enable Go module caching Add cache: true to actions/setup-go@v5 in the Release workflow to cache Go modules between runs. This reduces the GoReleaser step duration from 5-18 minutes to 1-3 minutes by avoiding repeated module downloads. --- .github/workflows/release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 293040d89..b66c5491e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -29,6 +29,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: "1.25.5" + cache: true - name: Set up Node.js uses: actions/setup-node@v6