Skip to content

Commit

Permalink
Merge pull request #166 from gabriel-samfira/fix-gh-client-tls-bug
Browse files Browse the repository at this point in the history
Fix TLS client bug
  • Loading branch information
gabriel-samfira authored Aug 23, 2023
2 parents e263db1 + 073ea11 commit 789644c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func GithubClient(ctx context.Context, token string, credsDetails params.GithubC
}
httpTransport := &http.Transport{
TLSClientConfig: &tls.Config{
ClientCAs: roots,
RootCAs: roots,
},
}
httpClient := &http.Client{Transport: httpTransport}
Expand Down

0 comments on commit 789644c

Please sign in to comment.