Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ jobs:
govulncheck ./...
- name: osv-scanner (OSV.dev cross-ecosystem scan)
uses: google/osv-scanner-action/osv-scanner-action@9a498708959aeaef5ef730655706c5a1df1edbc2 # v2.3.8
env:
# setup-go exports GOTOOLCHAIN=local, which leaks into the scanner
# container. Its bundled Go is older than our go directive, so the
# reachability analysis can't load packages and every vuln in the
# module graph gets reported as if it were called.
GOTOOLCHAIN: auto
with:
scan-args: |-
--recursive
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/0-draft/mcp-opa

go 1.26.4
go 1.26.5

require (
github.com/mark3labs/mcp-go v0.55.1
Expand Down