Skip to content

ClusterFuzzLite batch fuzzing #1383

ClusterFuzzLite batch fuzzing

ClusterFuzzLite batch fuzzing #1383

Workflow file for this run

name: ClusterFuzzLite batch fuzzing
on:
workflow_dispatch:
schedule:
- cron: '0 0/6 * * *' # Every 6th hour. Change this to whatever is suitable.
permissions: read-all
jobs:
BatchFuzzing:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
with:
egress-policy: block
allowed-endpoints: >
files.pythonhosted.org:443
gcr.io:443
github.com:443
pypi.org:443
us.archive.ubuntu.com:80
- name: Build Fuzzers
id: build
uses: google/clusterfuzzlite/actions/build_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1 # v1
with:
language: python # Change this to the language you are fuzzing.
allowed-broken-targets-percentage: 25
- name: Run Fuzzers
id: run
uses: google/clusterfuzzlite/actions/run_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1 # v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fuzz-seconds: 3600
mode: 'batch'
output-sarif: true
# Optional but recommended: For storing certain artifacts from fuzzing.
# See later section on "Git repo for storage".
storage-repo: https://${{ secrets.CFLITE_STORE_TOKEN }}@github.com/OZI-Project/clusterfuzzlite-storage-ozi-core.git
storage-repo-branch: main # Optional. Defaults to "main"
storage-repo-branch-coverage: gh-pages # Optional. Defaults to "gh-pages".