Skip to content

Commit

Permalink
Add security workflow with nancy (#2202)
Browse files Browse the repository at this point in the history
  • Loading branch information
ubiuser authored May 25, 2022
1 parent 482f4ce commit 5a56b69
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Security
on: [push, pull_request]

env:
GO_VERSION: 1.16

jobs:
nancy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- run: go mod download && go list -json -m all > go.list
- uses: sonatype-nexus-community/nancy-github-action@main

0 comments on commit 5a56b69

Please sign in to comment.