Configured dependency version locking and updated Renovate auto-merge… #951
Workflow file for this run
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: Nancy 3p Vulnerability Scan | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
nancy: | |
name: Run nancy to identify 3p go vulnerabilities | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up git repository | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | |
- name: Set up Go | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4 | |
with: | |
go-version: "1.20" | |
- name: Write go.list | |
run: go list -json -deps ./... > go.list | |
- name: Run nancy to check for vulnerabilities | |
uses: sonatype-nexus-community/nancy-github-action@main |