From 2225623e72362fa29496b1f3fcba337c4a982687 Mon Sep 17 00:00:00 2001 From: Zach Leslie Date: Tue, 14 May 2024 18:37:11 +0000 Subject: [PATCH] Pin the goreleaser version for Go version support (#3674) * Pin the goreleaser version for Go version support Without this change, goreleaser@latest requires a newer version of Go than is currently supported by the project. Here we pin the version. * Pin the version of the tools image (cherry picked from commit 868d06680621dc174e159dee428baebdc69d875f) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 78648b56c33..04e71ec96b0 100644 --- a/Makefile +++ b/Makefile @@ -279,7 +279,7 @@ update-mod: ### Release (intended to be used in the .github/workflows/release.yml) $(GORELEASER): - go install github.com/goreleaser/goreleaser@latest + go install github.com/goreleaser/goreleaser@v1.25.1 .PHONY: release release: $(GORELEASER)