Skip to content

build(deps): bump the minor-and-patch-action-updates group with 2 updates #1929

build(deps): bump the minor-and-patch-action-updates group with 2 updates

build(deps): bump the minor-and-patch-action-updates group with 2 updates #1929

Workflow file for this run

---
name: Pull-Request Fuzzing
on:
workflow_dispatch:
pull_request:
permissions:
contents: read
jobs:
fuzz_pr:
# skip fuzzing for dependabot PRs since dependabot does not have access to secrets
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}-${{ matrix.sanitizer }}-${{ github.workflow }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
sanitizer: [address, undefined]
steps:
- name: Build Fuzzers (${{ matrix.sanitizer }})
uses: google/clusterfuzzlite/actions/build_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1
with:
language: c++
github-token: ${{ secrets.GITHUB_TOKEN }}
sanitizer: ${{ matrix.sanitizer }}
storage-repo: https://${{ secrets.METRICS_TOKEN }}@github.com/philips-software/amp-embedded-infra-lib-metrics.git
- name: Run Fuzzers (${{ matrix.sanitizer }})
uses: google/clusterfuzzlite/actions/run_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fuzz-seconds: 300
mode: code-change
sanitizer: ${{ matrix.sanitizer }}
storage-repo: https://${{ secrets.METRICS_TOKEN }}@github.com/philips-software/amp-embedded-infra-lib-metrics.git