fix: golangci lint

Signed-off-by: nelson.parente <nelson_parente@live.com.pt>
This commit is contained in:
nelson.parente 2025-05-09 11:49:58 +01:00
parent 704a4b1908
commit b3d2ad1e54
No known key found for this signature in database
GPG Key ID: A6DF84B8116B7D28
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ func (g *GCPStorage) bulkGet(ctx context.Context, req *bindings.InvokeRequest) (
data = []byte(encoded)
}
if err := os.WriteFile(destPath, data, 0o644); err != nil {
if err := os.WriteFile(destPath, data, 0600); err != nil {
errCh <- err
return
}