Vulncheck #562
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: Vulncheck | |
on: | |
pull_request: | |
push: | |
schedule: | |
- cron: '28 1 * * *' | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
vulncheck: | |
name: Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.21' | |
check-latest: true | |
- name: Get official govulncheck | |
run: go install golang.org/x/vuln/cmd/govulncheck@latest | |
shell: bash | |
- name: Run govulncheck | |
run: govulncheck ./... | |
shell: bash |