Skip to content

Commit

Permalink
Update to latest GitHub client
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Schechter authored and migueleliasweb committed Aug 22, 2024
1 parent 0a9cd52 commit 94a2a9b
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.21
require (
github.com/buger/jsonparser v1.1.1
github.com/go-kit/log v0.2.1
github.com/google/go-github/v63 v63.0.0
github.com/google/go-github/v64 v64.0.0
github.com/gorilla/mux v1.8.0
golang.org/x/time v0.3.0
)
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KE
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/google/go-github/v63 v63.0.0 h1:13xwK/wk9alSokujB9lJkuzdmQuVn2QCPeck76wR3nE=
github.com/google/go-github/v63 v63.0.0/go.mod h1:IqbcrgUmIcEaioWrGYei/09o+ge5vhffGOcxrO0AfmA=
github.com/google/go-github/v64 v64.0.0 h1:4G61sozmY3eiPAjjoOHponXDBONm+utovTKbyUb2Qdg=
github.com/google/go-github/v64 v64.0.0/go.mod h1:xB3vqMQNdHzilXBiO2I+M7iEFtHf+DP/omBOv6tQzVo=
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI=
Expand Down
2 changes: 1 addition & 1 deletion src/mock/endpointpattern_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"testing"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v64/github"
)

func TestRepoGetContents(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion src/mock/server_options_external_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"testing"
"time"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v64/github"
"github.com/migueleliasweb/go-github-mock/src/mock"
)

Expand Down
2 changes: 1 addition & 1 deletion src/mock/server_options_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package mock
import (
"testing"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v64/github"
"github.com/gorilla/mux"
)

Expand Down
2 changes: 1 addition & 1 deletion src/mock/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"testing"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v64/github"
)

func TestNewMockedHTTPClient(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion src/mock/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"net/http"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v64/github"
)

// MustMarshal helper function that wraps json.Marshal
Expand Down

0 comments on commit 94a2a9b

Please sign in to comment.