Skip to content

build(deps): bump oss-fuzz-base/base-builder-go from 1f8967c to 5f8a362 in /.clusterfuzzlite #4892

build(deps): bump oss-fuzz-base/base-builder-go from 1f8967c to 5f8a362 in /.clusterfuzzlite

build(deps): bump oss-fuzz-base/base-builder-go from 1f8967c to 5f8a362 in /.clusterfuzzlite #4892

Workflow file for this run

name: pr
on: [ pull_request ]
permissions:
contents: read
env:
TESTCONTAINERS_RYUK_DISABLED: true
jobs:
semgrep:
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
container:
image: returntocorp/semgrep
steps:
# Retrieve the source code for the repository
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
# Fetch the semgrep rules
- run: git clone https://github.com/dgryski/semgrep-go.git
# Run the rule checker using the fetched rules
- run: semgrep ci -f semgrep-go
check-race:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
with:
# https://www.npmjs.com/package/semver#caret-ranges-123-025-004
go-version: "^1.21"
check-latest: true
- run: go version
- run: make deps
- run: make check-race
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32
with:
# https://www.npmjs.com/package/semver#caret-ranges-123-025-004
go-version: "^1.21"
check-latest: true
- run: go version
- run: make deps
- run: make check-fmt
- run: make vet
- run: make staticcheck
- run: make shortcheck