🌱 Update golangci version to 1.39

* Upgrade the golangci version to 1.39
* Changed the checkout depth
  https://github.com/golangci/golangci-lint/issues/1088#issuecomment-801540792
This commit is contained in:
naveen 2021-04-27 21:00:50 +00:00 committed by Naveen
parent d3a59eacff
commit da2e7029c7
3 changed files with 6 additions and 3 deletions

View File

@ -23,6 +23,8 @@ jobs:
steps:
- name: Clone the code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v2
with:
@ -46,4 +48,4 @@ jobs:
run: |
set -e
addlicense -l apache -c 'Security Scorecard Authors' -v *
git diff --exit-code
git diff --exit-code

View File

@ -2,6 +2,8 @@
run:
concurrency: 6
deadline: 5m
issues:
new-from-rev: ""
linters:
disable-all: true
enable:
@ -44,7 +46,6 @@ linters:
- prealloc
- predeclared
- rowserrcheck
- scopelint
- sqlclosecheck
- staticcheck
- structcheck

View File

@ -48,7 +48,7 @@ GOLANGCI_LINT = $(shell pwd)/bin/golangci-lint
golangci-lint:
rm -f $(GOLANGCI_LINT) || :
set -e ;\
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell dirname $(GOLANGCI_LINT)) v1.36.0 ;\
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell dirname $(GOLANGCI_LINT)) v1.39.0 ;\
lint: golangci-lint ## Runs golangci-lint linter
$(GOLANGCI_LINT) run -n