File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 2323 HOMEBREW_NO_AUTO_UPDATE : 1
2424 HOMEBREW_NO_ENV_HINTS : 1
2525
26+ permissions : {}
27+
2628jobs :
2729 workflow_syntax :
2830 if : github.repository_owner == 'Homebrew'
5254
5355 - run : zizmor --format sarif . >results.sarif
5456
57+ - name : Upload SARIF file
58+ uses : actions/upload-artifact@v4
59+ with :
60+ name : results.sarif
61+ path : results.sarif
62+
5563 - name : Set up actionlint
5664 run : |
5765 # Setting `shell: /bin/bash` prevents shellcheck from running on
6371
6472 - run : actionlint
6573
74+ upload_sarif :
75+ needs : workflow_syntax
76+ runs-on : ubuntu-latest
77+ permissions :
78+ contents : read
79+ security-events : write
80+ steps :
81+ - name : Download SARIF file
82+ uses : actions/download-artifact@v4
83+ with :
84+ name : results.sarif
85+ path : results.sarif
86+
6687 - name : Upload SARIF file
6788 uses : github/codeql-action/upload-sarif@v3
6889 with :
You can’t perform that action at this time.
0 commit comments