Nightly govulncheck #194
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: | |
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: | | |
# Excluding legacy contrib grpc.v12 | |
go list -f '{{.Dir}}' ./contrib/... | grep -v -e grpc.v12 | while read dir ; do | |
govulncheck -C $dir . | |
done |