Skip to content

Commit

Permalink
Pin goreleaser to v2.2.0 to avoid pulling in go 1.23 (#1953)
Browse files Browse the repository at this point in the history
Our stuff doesn't work with 1.23 yet (#1950 is working on it); for now, pin to
goreleaser 2.2.0 so we can still do releases.
  • Loading branch information
philandstuff authored Sep 13, 2024
1 parent 9d16cfc commit 6da017c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ BINDIR = $(PREFIX)/bin
INSTALL := install -m 0755

GO ?= go
GORELEASER := $(GO) run github.com/goreleaser/goreleaser/v2@latest
# goreleaser v2.3.0 requires go 1.23; PR #1950 is where we're doing that. For
# now, pin to v2.2.0
GORELEASER := $(GO) run github.com/goreleaser/goreleaser/v2@v2.2.0

PYTHON ?= python
TOX := $(PYTHON) -Im tox
Expand Down

0 comments on commit 6da017c

Please sign in to comment.