Fix required toolchain version for Go code. (#17366)
As of Go 1.21, version 1.21.0 is the first official Go 1.21 release, and we should thus be explicitly calling out that as the required toolchain version, since depending on version 1.21 would allow use of prerelease versions of the toolchain for Go 1.21, which we very much do not want.
Austin S. Hemmelgarn committed
Apr 10, 2024 at 11:04 UTC
0237612f275c65ae3993813ae55d19bc98c09eb5
1 file changed
+1
-1
src/go/collectors/go.d.plugin/go.mod
+1
-1
@@ -1,6 +1,6 @@
1
module github.com/netdata/netdata/go/go.d.plugin
2
3
-go 1.21
3
+go 1.21.0
4
5
replace github.com/prometheus/prometheus => github.com/prometheus/prometheus v0.50.1
6