Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Updated go mods

Updated go mods #7

Workflow file for this run

---
name: Nancy 3p Vulnerability Scan
on:
push:
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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5
with:
go-version: "1.22"
- 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