Add logic to access strings used by remote config bpf probe (#2983) #1831
This file contains 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: Nightly govulncheck | |
on: | |
workflow_call: # allows to reuse this workflow | |
inputs: | |
ref: | |
description: 'The branch to run the workflow on' | |
required: true | |
type: string | |
push: | |
branches: | |
- main | |
- release-v* | |
schedule: | |
- cron: '00 00 * * *' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
govulncheck-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ inputs.ref || github.ref }} | |
- name: Checkout Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 'stable' | |
- name: Install govulncheck | |
run: | | |
go install golang.org/x/vuln/cmd/govulncheck@latest | |
- name: Run govulncheck | |
run: govulncheck ./ddtrace/... ./appsec/... ./profiler/... ./internal/... | |
- name: Run govulncheck-contribs | |
run: | | |
go list -f '{{.Dir}}' ./contrib/... | while read dir ; do | |
govulncheck -C $dir . | |
done |