Scan for vulnerabilities #211
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: Scan for vulnerabilities | |
| on: | |
| schedule: | |
| # Run at 8:00 AM every weekday. | |
| - cron: '0 8 * * 1-5' | |
| jobs: | |
| scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Install devbox | |
| uses: jetpack-io/[email protected] | |
| with: | |
| enable-cache: true | |
| - name: Run Golang Vulncheck | |
| run: devbox run -- make check/vulns |