Bump linter from 1.29 to 1.36

Updating linter to latest version, which also updates
gosec to latest version to keep on top of updated security
checks in source code. Also disable gosec testing for rand.new.

Co-Authored-By: Alexander Hughes <Alexander.Hughes@pm.me>
Co-Authored-By: Sreejith Punnapuzha <Sreejith.Punnapuzha@outlook.com>
Change-Id: I46e71c41597f70150ace6d9611da5a01f93a933d
Signed-off-by: Alexander Hughes <Alexander.Hughes@pm.me>
This commit is contained in:
Alexander Hughes 2021-01-29 09:45:54 -05:00
parent 743f652494
commit 2d523314d8
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ func NewEncryptionKeyEngine(src rand.Source) *EncryptionKeyEngine {
src = &Source{} src = &Source{}
} }
return &EncryptionKeyEngine{ return &EncryptionKeyEngine{
rng: rand.New(src), rng: rand.New(src), //nolint:gosec
pool: pool, pool: pool,
} }
} }

View File

@ -3,7 +3,7 @@ set -x
tools_bin_dir="${BASH_SOURCE%/*}" tools_bin_dir="${BASH_SOURCE%/*}"
download_url=https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh download_url=https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh
version=v1.29.0 version=v1.36.0
if ! curl -sfL "$download_url" | sh -s -- -b "$tools_bin_dir/bin" "$version"; then if ! curl -sfL "$download_url" | sh -s -- -b "$tools_bin_dir/bin" "$version"; then
printf "Something went wrong while installing golangci-lint\n" 1>&2 printf "Something went wrong while installing golangci-lint\n" 1>&2