Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ GOSEC=gosec
# Third party tools
ARTIFACT_GOLINT=github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.8
ARTIFACT_GOSEC=github.com/securego/gosec/v2/cmd/gosec@v2.22.8
ARTIFACT_GOFUMPT=mvdan.cc/gofumpt@v0.9.2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍


# Build flags
LDFLAGS=-ldflags "-X main.Version=$(shell git describe --tags --always --dirty) -X main.BuildTime=$(shell date -u '+%Y-%m-%d_%H:%M:%S')"
Expand Down Expand Up @@ -194,6 +195,7 @@ install-tools:
@echo "Installing development tools..."
$(GOINSTALL) $(ARTIFACT_GOLINT)
$(GOINSTALL) $(ARTIFACT_GOSEC)
$(GOINSTALL) $(ARTIFACT_GOFUMPT)

# Show help
.PHONY: help
Expand Down
Loading