Disable G304 checks

This commit is contained in:
2025-09-05 11:48:36 +02:00
parent aa022fe50c
commit dc7b4d17b3
2 changed files with 2 additions and 2 deletions

View File

@@ -176,7 +176,7 @@ const (
)
func loadPrivateKey(name string, blockType string) (any, error) {
b, err := os.ReadFile(name)
b, err := os.ReadFile(name) // #nosec G304
if err != nil {
return nil, err
}