ci: freeze golangci action version (#5196)

## Description

This PR updates golang-ci to latest and stops looking at master for the action. 

Closes: #XXX
This commit is contained in:
Marko
2020-08-03 09:57:06 +02:00
committed by GitHub
parent 19fad101e2
commit 2d167aefcf
8 changed files with 11 additions and 10 deletions

View File

@@ -88,7 +88,7 @@ func TestServeTLS(t *testing.T) {
go ServeTLS(ln, mux, "test.crt", "test.key", log.TestingLogger(), DefaultConfig())
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, // nolint: gosec
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
c := &http.Client{Transport: tr}
res, err := c.Get("https://" + ln.Addr().String())