Donor Wall: Add categories to Major Donors #680
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: vuln | |
permissions: read-all | |
on: | |
workflow_dispatch: | |
push: | |
schedule: | |
- cron: '0 10 * * 1' | |
jobs: | |
run: | |
name: Vuln | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
strategy: | |
fail-fast: true | |
matrix: | |
go: ['stable'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
check-latest: true | |
- name: Install `govulncheck` | |
run: | | |
go install golang.org/x/vuln/cmd/govulncheck@latest | |
govulncheck -version | |
- name: Run `govulncheck` | |
run: "echo 'TODO: enable once rangefunc support is added'" |