fix: correct file permissions in integration test (gosec G306)

Change WriteFile permissions from 0o644 to 0o600 to address security
linting issue about file permissions being too permissive.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jeffrey Paul 2025-06-20 09:02:01 -07:00
parent 9e74b34b5d
commit 0d140b4636

View File

@ -2144,7 +2144,7 @@ func copyFile(src, dst string) error {
return err
}
err = os.WriteFile(dst, srcData, 0o644)
err = os.WriteFile(dst, srcData, 0o600)
if err != nil {
return err
}