Permalink
Please
sign in to comment.
Browse files
fix(ci): pin golangci-lint to v1.21.0
Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
- Loading branch information
Showing
with
26 additions
and 6 deletions.
- +20 −0 .circleci/bootstrap.sh
- +4 −0 .circleci/config.yml
- +2 −6 Makefile
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Copyright The Helm Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
set -euo pipefail | ||
|
||
curl -sSL https://github.com/golangci/golangci-lint/releases/download/v$GOLANGCI_LINT_VERSION/golangci-lint-$GOLANGCI_LINT_VERSION-linux-amd64.tar.gz | tar xz | ||
sudo mv golangci-lint-$GOLANGCI_LINT_VERSION-linux-amd64/golangci-lint /usr/local/bin/golangci-lint | ||
rm -rf golangci-lint-$GOLANGCI_LINT_VERSION-linux-amd64 |
0 comments on commit
4d1c11f