build: bump golangci-lint to 2.1.6

This commit is contained in:
Oleksandr Redko
2025-06-26 21:18:20 +03:00
committed by Henrique Dias
parent da03728cd7
commit 1d494ff315
15 changed files with 515 additions and 436 deletions

View File

@@ -72,7 +72,7 @@ func (s *Server) GetTokenExpirationTime(fallback time.Duration) time.Duration {
// GenerateKey generates a key of 512 bits.
func GenerateKey() ([]byte, error) {
b := make([]byte, 64) //nolint:gomnd
b := make([]byte, 64) //nolint:mnd
_, err := rand.Read(b)
// Note that err == nil only if we read len(b) bytes.
if err != nil {