Skip to content

Commit

Permalink
Update go to 1.21.4
Browse files Browse the repository at this point in the history
  • Loading branch information
prymitive committed Dec 5, 2023
1 parent ddc6fb4 commit 8a6671a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ format: $(GOBIN)/gofumpt $(GOBIN)/goimports
$(GOBIN)/gofumpt -extra -l -w .
$(GOBIN)/goimports -local github.com/cloudflare/pint -w .

tidy:
go mod tidy
@for f in $(wildcard tools/*/go.mod) ; do echo ">>> $$f" && cd $(CURDIR)/`dirname "$$f"` && go mod tidy && cd $(CURDIR) ; done


.PHONY: test
test:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cloudflare/pint

go 1.21.3
go 1.21.4

require (
github.com/cespare/xxhash/v2 v2.2.0
Expand Down
2 changes: 1 addition & 1 deletion tools/gofumpt/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module _

go 1.21.3
go 1.21.4

require mvdan.cc/gofumpt v0.5.0

Expand Down
2 changes: 1 addition & 1 deletion tools/goimports/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module _

go 1.21.3
go 1.21.4

require golang.org/x/tools v0.16.0

Expand Down
2 changes: 1 addition & 1 deletion tools/golangci-lint/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module _

go 1.21.3
go 1.21.4

require github.com/golangci/golangci-lint v1.55.2

Expand Down

0 comments on commit 8a6671a

Please sign in to comment.