Skip to content

Commit 6fb0275

Browse files
committed
Update workflow
1 parent f2161ec commit 6fb0275

File tree

1 file changed

+4
-20
lines changed

1 file changed

+4
-20
lines changed

.github/workflows/fuzzing.yaml

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: "actions/checkout@v4"
4242

4343
- name: Install CI Fuzz
44-
uses: "CodeIntelligenceTesting/actions/install-cifuzz@v1"
44+
uses: "CodeIntelligenceTesting/actions/install-cifuzz@v2"
4545
with:
4646
version: latest
4747
download-token: ${{ secrets.CIFUZZ_DOWNLOAD_TOKEN }}
@@ -54,7 +54,7 @@ jobs:
5454
# rclone copy -v cloud-storage:corpora/PROJECT_NAME .cifuzz-corpus
5555

5656
- name: Run fuzzing
57-
uses: "CodeIntelligenceTesting/actions/run-fuzzing@v1"
57+
uses: "CodeIntelligenceTesting/actions/run-fuzzing@v2"
5858
with:
5959
duration: 15s
6060

@@ -64,7 +64,8 @@ jobs:
6464
# rclone copy -v .cifuzz-corpus cloud-storage:corpora/PROJECT_NAME
6565

6666
- name: Upload code-scanning report
67-
uses: "CodeIntelligenceTesting/actions/upload-code-scanning-report@v1"
67+
if: always()
68+
uses: "CodeIntelligenceTesting/actions/upload-code-scanning-report@v2"
6869

6970
# Uncomment this step if you want to commit all Findings found when running this workflow:
7071
# - name: Commit Findings to repository
@@ -75,20 +76,3 @@ jobs:
7576
# git commit -m "Automated commit of CI Fuzz Findings"
7677
# git push
7778

78-
- name: Upload coverage report
79-
uses: actions/upload-artifact@v4
80-
with:
81-
name: cifuzz-coverage
82-
path: coverage_report
83-
84-
- name: Upload lcov report
85-
uses: actions/upload-artifact@v4
86-
with:
87-
name: cifuzz-coverage-lcov
88-
path: lcov.info
89-
90-
- name: Upload Findings report
91-
uses: actions/upload-artifact@v4
92-
with:
93-
name: cifuzz-findings
94-
path: findings.txt

0 commit comments

Comments
 (0)