This commit is contained in:
2026-01-02 18:20:15 +00:00
parent 0f7c29c3ef
commit ce5a8fbffd
37 changed files with 323 additions and 178 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ func (cs *CredentialStore) LoadFromFile(path string) error {
return nil
}
data, err := os.ReadFile(path)
data, err := os.ReadFile(path) // #nosec G304 -- Path is from config, not user input
if err != nil {
return fmt.Errorf("failed to read credential file: %w", err)
}