diff --git a/pkg/secret/generate/encryptionkey.go b/pkg/secret/generate/encryptionkey.go index 5bda84b72..574d0d86f 100644 --- a/pkg/secret/generate/encryptionkey.go +++ b/pkg/secret/generate/encryptionkey.go @@ -54,7 +54,7 @@ func NewEncryptionKeyEngine(src rand.Source) *EncryptionKeyEngine { src = &Source{} } return &EncryptionKeyEngine{ - rng: rand.New(src), + rng: rand.New(src), //nolint:gosec pool: pool, } } diff --git a/tools/install_linter b/tools/install_linter index 9f5d402ab..535c26be2 100755 --- a/tools/install_linter +++ b/tools/install_linter @@ -3,7 +3,7 @@ set -x tools_bin_dir="${BASH_SOURCE%/*}" 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 printf "Something went wrong while installing golangci-lint\n" 1>&2