Nightly #622
This file contains hidden or 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: Nightly | |
| on: | |
| workflow_dispatch: {} | |
| schedule: | |
| # Daily, at 1pm UTC / 6am PST. | |
| - cron: "0 13 * * *" | |
| jobs: | |
| govulncheck: | |
| name: Go vulnerability check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Run govulncheck | |
| uses: golang/govulncheck-action@v1 | |
| with: | |
| go-version-file: go.mod | |
| gosec: | |
| name: GoSec security scan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Scan code | |
| uses: securego/gosec@master | |
| with: | |
| args: ./... |