summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnatoli Babenia <anatoli@rainforce.org>2023-07-06 07:03:13 +0300
committerGitHub <noreply@github.com>2023-07-06 07:03:13 +0300
commitba3c9125e19561de0d94ae2d919bcbc06a3bc64a (patch)
treeb05fe05ae52df002bbf3caa38dd4608cca9230a9
parent9fe4975733e264ac720a1d898e9bf3aea8507bf7 (diff)
`golangci-lint` got new install URL too
https://goreleaser.com/deprecations/#godownloader
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f59cc70..0237257 100644
--- a/Makefile
+++ b/Makefile
@@ -20,13 +20,11 @@ ci-static-analysis:
golangci-lint run
ci-install-go-tools:
- pwd
- ls -la
mkdir -p ${HOME}/.local/bin
curl -sfL https://goreleaser.com/static/run > ${HOME}/.local/bin/goreleaser
ci-install-ci-tools:
- curl -sfL https://install.goreleaser.com/github.com/goreleaser/goreleaser.sh | sudo sh -s -- -b ${HOME}/.local/bin/ "v0.122.0"
+ curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ${HOME}/.local/bin/
ci-docker-login:
echo '${DOCKER_PASSWORD}' | docker login -u '${DOCKER_USERNAME}' --password-stdin '${PRODUCTION_REGISTRY}'