shawnps

Results 31 comments of shawnps

Looks like we're having some issues again, I'm investigating now. Edit: looks like some networking maintenance happening over at Digital Ocean.

Hi @smutel I think Go treats anything above v1 differently: https://go.dev/doc/modules/release-workflow#breaking You may be able to update your `go.mod` to: `module github.com/smutel/terraform-provider-netbox/v4`

@smutel Not totally sure but you may need a `v4` dir: https://research.swtch.com/vgo-module > In this case, v2.0.0 is created not by forking the whole tree into a separate branch but...

@error0x001 it seems like version v0.0.1 is not showing up yet on the Golang proxy: https://proxy.golang.org/github.com/error0x001/ws-cursors/@latest I'm not sure when it will show up, but once it does Go Report...

Hello, GRC is now running on Go 1.18, and the golint check has been removed.

@spekary just to clarify we were already running go vet, it didn't replace golint. We can certainly take a look at running staticcheck.

@kortschak I'm not too familiar with vanity import paths, do you know how to resolve the path to its GitHub URL?

We can probably do something similar to what the Go source is doing (I think it's [here](https://github.com/golang/tools/blob/master/go/vcs/vcs.go)), or perhaps [this package](https://pkg.go.dev/golang.org/x/tools/go/vcs#RepoRoot) has something. I'll need to do some more digging.

Would also like to see this fixed, was hoping to integrate it into Go Report Card http://goreportcard.com/

@platypusguy we download a .zip of the repository from proxy.golang.org using the latest module version. So we first get the version from https://proxy.golang.org/github.com/platypusguy/jacobin/@latest which returns: ``` {"Version":"v0.0.0-20230121230130-f96320012698","Time":"2023-01-21T23:01:30Z","Origin":{"VCS":"git","URL":"https://github.com/platypusguy/jacobin","Hash":"f9632001269859d73ce8bc749b50a7d32499efeb"}} ``` Then we...