chore(telemetry): drop http_server body-size histograms via OTel views #599
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: govulncheck | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - develop | |
| - master | |
| jobs: | |
| govulncheck: | |
| name: govulncheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| # libvlc-dev is required because pkg/vlc-{client,server} pull in | |
| # libvlc-go/v3 (cgo); govulncheck has to build the package graph | |
| # to do its symbolic call-site analysis. apt-get install doesn't | |
| # need the repo on disk, so no outer checkout — the action does | |
| # its own checkout + setup-go (an outer actions/checkout@v6 here | |
| # leaves credentials around that collide with the action's pinned | |
| # v4 checkout, yielding a duplicate-Authorization 400 on fetch). | |
| - run: sudo apt-get update -qq && sudo apt-get install -y libvlc-dev | |
| - uses: golang/govulncheck-action@v1 | |
| with: | |
| go-version-file: go.mod |