Skip to content

ci: add Trivy 0.57.1 and 0.58.1 to bundle testing #583

ci: add Trivy 0.57.1 and 0.58.1 to bundle testing

ci: add Trivy 0.57.1 and 0.58.1 to bundle testing #583

Workflow file for this run

name: Verify Docs
on:
pull_request:
merge_group:
env:
GO_VERSION: '1.22'
jobs:
build:
name: Verify Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- run: |
make docs
if [ -n "$(git status --porcelain)" ]; then
echo "Run 'make docs' and push it"
exit 1
fi