We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 847644b commit 2914854Copy full SHA for 2914854
.golangci.json
@@ -147,6 +147,11 @@
147
"ATTENTION"
148
]
149
},
150
+ "gomoddirectives": {
151
+ "replace-allow-list": [
152
+ "golang.org/x/crypto"
153
+ ]
154
+ },
155
"govet": {
156
"enable": [
157
"atomicalign",
go.mod
@@ -18,3 +18,6 @@ require (
18
google.golang.org/protobuf v1.36.10 // indirect
19
gopkg.in/yaml.v3 v3.0.1 // indirect
20
)
21
+
22
+// Security: Force golang.org/x/crypto to v0.45.0 to fix CVE-2025-47914 and CVE-2025-58181
23
+replace golang.org/x/crypto => golang.org/x/crypto v0.45.0
0 commit comments