Skip to content

Commit

Permalink
Merge pull request #17 from marcelamelara/fix-mkdir-privs
Browse files Browse the repository at this point in the history
Quick fixes: scai-gen/fileio/common.go and test-sigstore-integration.yml
  • Loading branch information
marcelamelara committed Nov 2, 2023
2 parents f17d36e + cadc6c3 commit c7028e8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test-sigstore-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ jobs:
- name: Sign and upload SCAI report (Sigstore)
id: sign-report
shell: bash
uses: ./.github/actions/scai-gen-sigstore
with:
statement-file: examples/sbom+slsa/metadata/evidence-collection.scai.json
Expand Down
2 changes: 1 addition & 1 deletion scai-gen/fileio/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ func HasJSONExt(filename string) bool {
func CreateOutDir(filename string) error {
outDir := filepath.Dir(filename)

return os.MkdirAll(outDir, 0644)
return os.MkdirAll(outDir, 0755)
}

0 comments on commit c7028e8

Please sign in to comment.