chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.32.35 to 1.32.36 #152
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: "Fuzz" | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| # Weekly long-running fuzz pass on Wednesdays at 06:00 UTC. | |
| - cron: "0 6 * * 3" | |
| workflow_dispatch: | |
| inputs: | |
| fuzz_time: | |
| description: "Per-target fuzz duration (e.g. 60s, 5m, 1h)" | |
| required: false | |
| default: "60s" | |
| permissions: | |
| contents: read | |
| jobs: | |
| fuzz: | |
| name: Run Go fuzz targets | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| env: | |
| # PR runs use a short budget so they don't block merges. | |
| # The scheduled weekly run gets a longer budget to actually find bugs. | |
| # workflow_dispatch lets a maintainer pick any duration. | |
| FUZZ_TIME: ${{ inputs.fuzz_time || (github.event_name == 'schedule' && '10m' || '60s') }} | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 | |
| with: | |
| go-version-file: ./go.mod | |
| - name: make fuzz | |
| run: make fuzz |