File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -114,9 +114,11 @@ jobs:
114114 curl -fsSL "https://raw.githubusercontent.com/${{ github.repository }}/main/releasenotes/${RELEASE_TAG}.md" \
115115 -o "${RELEASE_TAG}.md"
116116 - name : Release
117- uses : softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # tag=v2.5.0
118- with :
119- draft : true
120- files : out/*
121- body_path : ${{ env.RELEASE_TAG }}.md
122- tag_name : ${{ env.RELEASE_TAG }}
117+ run : |
118+ gh release create "${RELEASE_TAG}" \
119+ --draft \
120+ --notes-file "${RELEASE_TAG}.md" \
121+ out/*
122+ env :
123+ RELEASE_TAG : ${{ env.RELEASE_TAG }}
124+ GH_TOKEN : ${{ github.token }}
Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ jobs:
2727 # Upload SARIF to Security tab on push to main
2828 - name : Run zizmor (SARIF)
2929 if : github.event_name == 'push'
30- uses : zizmorcore/zizmor-action@0dce2577a4760a2749d8cfb7a84b7d5585ebcb7d # v0.5.0
30+ uses : zizmorcore/zizmor-action@71321a20a9ded102f6e9ce5718a2fcec2c4f70d8 # v0.5.2
3131 # Block PRs with findings
3232 - name : Run zizmor (PR check)
3333 if : github.event_name == 'pull_request'
34- uses : zizmorcore/zizmor-action@0dce2577a4760a2749d8cfb7a84b7d5585ebcb7d # v0.5.0
34+ uses : zizmorcore/zizmor-action@71321a20a9ded102f6e9ce5718a2fcec2c4f70d8 # v0.5.2
3535 with :
3636 advanced-security : false
You can’t perform that action at this time.
0 commit comments