From 0b0ae7d275772fa7abb9f67e9d171720b58c26dc Mon Sep 17 00:00:00 2001 From: Lakshman Patel Date: Mon, 13 Jul 2026 16:40:51 +0530 Subject: [PATCH] fix(ci): revert invalid goreleaser version pin release.yml pinned goreleaser-action to version "v6.3.0", which does not exist upstream (goreleaser's actual releases top out at v2.18.0). This went undetected because no tag was pushed since the pin was introduced; the v0.2.0 tag push was the first trigger and failed the goreleaser job with a 404 fetching the binary. Reverts to the "~> v2" constraint used before that change. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 692a3210..7e7aeb1f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,7 +60,7 @@ jobs: uses: goreleaser/goreleaser-action@1a80836c5c9d9e5755a25cb59ec6f45a3b5f41a8 # v7.2.1 with: distribution: goreleaser - version: "v6.3.0" + version: "~> v2" args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}