From 953224ba4597447eced99a6ee7674cb1561c687d Mon Sep 17 00:00:00 2001 From: Jeff Ortel Date: Tue, 17 Sep 2024 11:16:01 -0500 Subject: [PATCH] :ghost: actions using Go 1.22. (#132) gomports@latest moved to require Go 1.22 by default, the runner uses 1.21. Fixed here to pin goimports to 0.24 which only requires 1.21. This way if @latest moves again, CI won't be broken. --------- Signed-off-by: Jeff Ortel --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8b032e7..4eef87b 100644 --- a/Makefile +++ b/Makefile @@ -33,4 +33,4 @@ vet: # Ensure goimports installed. $(GOIMPORTS): - go install golang.org/x/tools/cmd/goimports@latest + go install golang.org/x/tools/cmd/goimports@v0.24