Skip to content

Commit a140d6c

Browse files
authored
ci: Update actions to fix fuzzing (#251)
- The upload-artifact@v3 is fully deprecated, update to v4. - Update upload-sarif to v3.
1 parent 5cda064 commit a140d6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cifuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
fuzz-seconds: 800
2626
output-sarif: true
2727
- name: Upload Crash
28-
uses: actions/upload-artifact@v3
28+
uses: actions/upload-artifact@v4
2929
if: failure() && steps.build.outcome == 'success'
3030
with:
3131
name: artifacts
3232
path: ./out/artifacts
3333
- name: Upload Sarif
3434
if: always() && steps.build.outcome == 'success'
35-
uses: github/codeql-action/upload-sarif@v2
35+
uses: github/codeql-action/upload-sarif@v3
3636
with:
3737
# Path to SARIF file relative to the root of the repository
3838
sarif_file: cifuzz-sarif/results.sarif

0 commit comments

Comments
 (0)