Skip to content

Bump actions/cache from 5.0.3 to 5.0.5 #8

Bump actions/cache from 5.0.3 to 5.0.5

Bump actions/cache from 5.0.3 to 5.0.5 #8

Workflow file for this run

name: "ClusterFuzzLite PR fuzzing"
on:
pull_request:
branches: [ "master" ]
permissions: read-all
jobs:
Fuzzing:
runs-on: ubuntu-24.04
concurrency:
group: ${{ github.workflow }}-${{ matrix.sanitizer }}-${{ github.ref }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
sanitizer:
- address
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Build fuzzers (${{ matrix.sanitizer }})
id: build
uses: google/clusterfuzzlite/actions/build_fuzzers@v1
with:
language: jvm
sanitizer: ${{ matrix.sanitizer }}
- name: Run fuzzers (${{ matrix.sanitizer }})
id: run
uses: google/clusterfuzzlite/actions/run_fuzzers@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fuzz-seconds: 300
mode: "code-change"
sanitizer: ${{ matrix.sanitizer }}