Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions run-fuzzing/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ runs:
run: cifuzz run -v --interactive=false --max-fuzzing-duration ${{ inputs.duration }}
shell: bash

- name: Generate findings report
run: cifuzz findings > findings.txt
shell: bash

- name: Check for findings
id: findings_check
continue-on-error: true
Expand All @@ -38,7 +34,7 @@ runs:
run: |
if [ "${{ steps.findings_check.outcome }}" = "failure" ]; then
echo "Fuzzing found issues:"
cat findings.txt
cifuzz findings
else
echo "Fuzzing run failed (possible build error)"
fi
Expand Down
5 changes: 3 additions & 2 deletions upload-code-scanning-report/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ runs:
shell: bash

- name: Upload findings to GitHub code scanning
uses: github/codeql-action/upload-sarif@v3
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: results.sarif

Expand All @@ -30,4 +30,5 @@ runs:
uses: actions/upload-artifact@v4
with:
name: cifuzz-findings
path: findings.txt
path: .cifuzz-findings
include-hidden-files: true