Skip to content

chore(ci): bump docker/bake-action from 6.2.0 to 6.3.0 #2271

chore(ci): bump docker/bake-action from 6.2.0 to 6.3.0

chore(ci): bump docker/bake-action from 6.2.0 to 6.3.0 #2271

Workflow file for this run

name: Fuzzing
on:
merge_group:
push:
branches:
- main
paths-ignore:
- '**/*.md'
pull_request:
branches:
- "**"
paths-ignore:
- '**/*.md'
permissions:
contents: read # for actions/checkout to fetch code
jobs:
test:
name: Fuzz
runs-on: ubuntu-latest
env:
GOFLAGS: -trimpath
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
go-version: 1.23.x
- name: Run any fuzzing tests
run: go test -list . | grep '^Fuzz' | parallel 'go test -v -run=^{}$ -fuzz=^{}$ -fuzztime=5m'