File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 3535
3636 steps :
3737 - name : Check access
38- if : ${{ github.event.pull_request.author_association != 'COLLABORATOR' && github.event.pull_request.author_association != 'OWNER' }}
38+ if : ${{ github.event.pull_request.author_association != 'COLLABORATOR' && github.event.pull_request.author_association != 'OWNER' && github.event.pull_request.author_association != 'MEMBER' }}
3939 run : |
4040 echo "This job needs re-running by someone with collaboration permissions."
4141 exit 1
@@ -109,6 +109,11 @@ jobs:
109109 mv ./cx_result.sarif ./cx_result.sarif.orig
110110 jq '.runs |= map(.results |= map(.locations |= map(if .physicalLocation.artifactLocation.uri == "" then .physicalLocation.artifactLocation.uri = "file:/README.md" else . end)))' cx_result.sarif.orig > cx_result.sarif
111111
112+ - uses : actions/upload-artifact@v4
113+ with :
114+ name : cx_result-sarif
115+ path : cx_result.sarif
116+
112117 # Upload results to github
113118 - name : Upload SARIF file
114119 uses : github/codeql-action/upload-sarif@7273f08caa1dcf2c2837f362f1982de0ab4dc344 # v3.29.2
You can’t perform that action at this time.
0 commit comments