This repository was archived by the owner on Apr 1, 2026. It is now read-only.
Nightly #48
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: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - name: Install govulncheck | |
| run: go install golang.org/x/vuln/cmd/govulncheck@latest | |
| - name: Execute govulncheck | |
| run: govulncheck ./... |