diff --git a/pkg/remote/builtin/github/helper.go b/pkg/remote/builtin/github/helper.go index ab6473ded..bedd39ceb 100644 --- a/pkg/remote/builtin/github/helper.go +++ b/pkg/remote/builtin/github/helper.go @@ -25,6 +25,7 @@ func NewClient(uri, token string, skipVerify bool) *github.Client { // self-signed certificates. if skipVerify { t.Transport = &http.Transport{ + Proxy: http.ProxyFromEnvironment, TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, } }