We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83e08dc commit cd7f5edCopy full SHA for cd7f5ed
.github/workflows/ci.yml
@@ -38,8 +38,9 @@ jobs:
38
- name: Run govulncheck
39
uses: golang/govulncheck-action@v1
40
with:
41
- go-version-input: ''
42
- go-version-file: go.mod
+ # Use Go 1.26.1 to pick up crypto/x509 vulnerability fixes (GO-2026-4600, GO-2026-4599).
+ # go.mod stays at go 1.25.8 for golangci-lint compatibility until it supports Go 1.26.
43
+ go-version-input: '1.26.1'
44
go-package: ./...
45
repo-checkout: false
46
go.mod
@@ -1,6 +1,6 @@
1
module github.com/modelcontextprotocol/registry
2
3
-go 1.26.1
+go 1.25.8
4
5
require (
6
cloud.google.com/go/kms v1.26.0
0 commit comments