hiago-balbino triggered the security pipe #51
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: Security | |
run-name: ${{ github.actor }} triggered the security pipe | |
permissions: | |
contents: read | |
on: [push] | |
jobs: | |
vulnerability: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.22.0 | |
check-latest: true | |
- name: Set up govulncheck | |
run: go install golang.org/x/vuln/cmd/govulncheck@latest | |
- name: Run vulnerability checks | |
run: make vulncheck |