Skip to content

chore(ci): bump github/codeql-action from 2.22.4 to 2.22.5 #1617

chore(ci): bump github/codeql-action from 2.22.4 to 2.22.5

chore(ci): bump github/codeql-action from 2.22.4 to 2.22.5 #1617

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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 1.21.x
- name: Run any fuzzing tests
run: go test -list . | grep '^Fuzz' | parallel 'go test -v -run=^{}$ -fuzz=^{}$ -fuzztime=5m'