docker: build image with data race detector and antithesis instrumentor #196
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: Security Build | |
on: | |
push: | |
workflow_dispatch: {} | |
jobs: | |
govuln: | |
name: Run govuln check and Publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Running govulncheck | |
uses: Templum/govulncheck-action@v0.0.8 | |
continue-on-error: true | |
env: | |
DEBUG: "true" | |
with: | |
go-version: 1.21.x | |
vulncheck-version: latest | |
package: ./... | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
fail-on-vuln: true |