Skip to content

chore(ci): bump github/codeql-action from 4.31.4 to 4.31.6 #2964

chore(ci): bump github/codeql-action from 4.31.4 to 4.31.6

chore(ci): bump github/codeql-action from 4.31.4 to 4.31.6 #2964

Workflow file for this run

name: Fuzzing
on:
merge_group:
push:
branches:
- main
paths-ignore:
- '**/*.md'
pull_request:
branches:
- "**"
paths-ignore:
- '**/*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
permissions:
contents: read # for actions/checkout to fetch code
env:
# Use the Go toolchain installed by setup-go
GOTOOLCHAIN: local
jobs:
test:
name: Fuzz
runs-on: ubuntu-latest
env:
GOFLAGS: -trimpath
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: stable
- name: Run any fuzzing tests
run: go test -list . | grep '^Fuzz' | parallel 'go test -v -run=^{}$ -fuzz=^{}$ -fuzztime=5m'