We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76499b9 commit be06776Copy full SHA for be06776
build/common.go
@@ -191,7 +191,8 @@ func (Build) GenerateManifestFile() error {
191
if err != nil {
192
return err
193
}
194
- err = os.WriteFile(manifestFilePath, []byte(manifestContent), 0600)
+ // #nosec G306 - we need reading permissions for this file
195
+ err = os.WriteFile(manifestFilePath, []byte(manifestContent), 0755)
196
197
198
0 commit comments