This repository was archived by the owner on Jun 19, 2026. It is now read-only.
build(deps): bump sigstore/cosign-installer from 3.10.1 to 4.1.1 (#20) #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ClusterFuzzLite | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| push: | |
| branches: [ master ] | |
| schedule: | |
| # Weekly batch fuzzing: Saturday 3am UTC | |
| - cron: '0 3 * * 6' | |
| permissions: {} | |
| jobs: | |
| # ───────────────────────────────────────────── | |
| # PR fuzzing: short run on code changes | |
| # ───────────────────────────────────────────── | |
| pr-fuzzing: | |
| if: github.event_name == 'pull_request' | |
| name: Fuzz (PR) | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 20 | |
| permissions: | |
| contents: read | |
| security-events: write | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Build fuzzers | |
| id: build | |
| uses: google/clusterfuzzlite/actions/build_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1 # v1 | |
| with: | |
| language: c | |
| sanitizer: address | |
| - name: Run fuzzers | |
| id: run | |
| uses: google/clusterfuzzlite/actions/run_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1 # v1 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| fuzz-seconds: 300 | |
| mode: code-change | |
| # ───────────────────────────────────────────── | |
| # Batch fuzzing: longer weekly run with corpus management | |
| # ───────────────────────────────────────────── | |
| batch-fuzzing: | |
| if: github.event_name == 'schedule' || github.event_name == 'push' | |
| name: Fuzz (batch) | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 60 | |
| permissions: | |
| contents: read | |
| security-events: write | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Build fuzzers | |
| id: build | |
| uses: google/clusterfuzzlite/actions/build_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1 # v1 | |
| with: | |
| language: c | |
| sanitizer: address | |
| - name: Run fuzzers | |
| id: run | |
| uses: google/clusterfuzzlite/actions/run_fuzzers@884713a6c30a92e5e8544c39945cd7cb630abcd1 # v1 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| fuzz-seconds: 1800 | |
| mode: batch |