refactor: thin GraphQL client, remove chat, surface commands + issue explorer #104
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: Security | |
| on: | |
| pull_request: | |
| branches: [master] | |
| schedule: | |
| - cron: "30 7 * * 1" | |
| workflow_dispatch: | |
| concurrency: | |
| group: security-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| dependency-scans: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - name: Run govulncheck | |
| run: go run golang.org/x/vuln/cmd/govulncheck@v1.1.4 ./... | |
| - name: Run OSV scan (Go modules) | |
| run: go run github.com/google/osv-scanner/cmd/osv-scanner@v1.9.2 --lockfile=go.mod |