Skip to content

Commit 9e77596

Browse files
authored
Merge pull request #1389 from vtov-kr/upgrade-golangci-lint-in-makefile
chore: Upgrade golangci-lint in Makefile to support toolchain directive
2 parents 4dea112 + 119321a commit 9e77596

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARCH=$(shell uname -m)
33
OS?=$(shell uname)
44
ITERATION := 1
55

6-
GOLANGCI_VERSION = 1.53.2
6+
GOLANGCI_VERSION = 1.55.2
77
GORELEASER := $(shell command -v goreleaser 2> /dev/null)
88

99
SOURCE_FILES?=$$(go list ./... | grep -v /vendor/)
@@ -42,7 +42,7 @@ fmt: lint-fix
4242

4343
install:
4444
go install ./cmd/saml2aws
45-
.PHONY: mod
45+
.PHONY: install
4646

4747
build:
4848

@@ -80,4 +80,4 @@ test:
8080
docker-build-environment:
8181
docker build --platform=amd64 -t saml2aws/build -f Dockerfile.build .
8282
docker run -it --rm -v /var/run/docker.sock:/var/run/docker.sock -e BUILDX_CONFIG=$(PWD)/.buildtemp -e GOPATH=$(PWD)/.buildtemp -e GOTMPDIR=$(PWD)/.buildtemp -e GOCACHE=$(PWD)/.buildtemp/.cache -e GOENV=$(PWD)/.buildtemp/env -v $(PWD):$(PWD) -w $(PWD) saml2aws/build:latest
83-
.PHONY: docker-build-environment
83+
.PHONY: docker-build-environment

0 commit comments

Comments
 (0)