Skip to content

Set go version to 1.20 properly #401

Set go version to 1.20 properly

Set go version to 1.20 properly #401

Triggered via push October 3, 2023 15:59
Status Failure
Total duration 14m 3s
Artifacts

go.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

4 errors
build: crdt.go#L59
rand.Seed has been deprecated since Go 1.20 and an alternative has been available since Go 1.0: Programs that call Seed and then expect a specific sequence of results from the global random source (using functions such as Int) can be broken when a dependency changes how much it consumes from the global random source. To avoid such breakages, programs that need a specific result sequence should use NewRand(NewSource(seed)) to obtain a random generator that other packages cannot access. (SA1019)
build: crdt_test.go#L39
rand.Seed has been deprecated since Go 1.20 and an alternative has been available since Go 1.0: Programs that call Seed and then expect a specific sequence of results from the global random source (using functions such as Int) can be broken when a dependency changes how much it consumes from the global random source. To avoid such breakages, programs that need a specific result sequence should use NewRand(NewSource(seed)) to obtain a random generator that other packages cannot access. (SA1019)
build: heads_test.go#L36
rand.Read has been deprecated since Go 1.20 because it shouldn't be used: For almost all use cases, crypto/rand.Read is more appropriate. (SA1019)
build
Process completed with exit code 1.