Skip to content

Commit 4ac98ad

Browse files
authored
Update go-github to v62 (#355)
1 parent 417c260 commit 4ac98ad

11 files changed

+12
-12
lines changed

appconfig/appconfig.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"net/http"
2626
"strings"
2727

28-
"github.com/google/go-github/v61/github"
28+
"github.com/google/go-github/v62/github"
2929
"github.com/pkg/errors"
3030
"github.com/rs/zerolog"
3131
)

appconfig/appconfig_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"path/filepath"
2222
"testing"
2323

24-
"github.com/google/go-github/v61/github"
24+
"github.com/google/go-github/v62/github"
2525
)
2626

2727
const (

example/issue_comment.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"fmt"
2121
"strings"
2222

23-
"github.com/google/go-github/v61/github"
23+
"github.com/google/go-github/v62/github"
2424
"github.com/palantir/go-githubapp/githubapp"
2525
"github.com/pkg/errors"
2626
"github.com/rs/zerolog"

githubapp/caching_client_creator.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ package githubapp
1717
import (
1818
"fmt"
1919

20-
"github.com/google/go-github/v61/github"
20+
"github.com/google/go-github/v62/github"
2121
lru "github.com/hashicorp/golang-lru"
2222
"github.com/pkg/errors"
2323
"github.com/shurcooL/githubv4"

githubapp/client_creator.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"time"
2525

2626
"github.com/bradleyfalzon/ghinstallation/v2"
27-
"github.com/google/go-github/v61/github"
27+
"github.com/google/go-github/v62/github"
2828
"github.com/gregjones/httpcache"
2929
"github.com/pkg/errors"
3030
"github.com/shurcooL/githubv4"

githubapp/context.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ package githubapp
1717
import (
1818
"context"
1919

20-
"github.com/google/go-github/v61/github"
20+
"github.com/google/go-github/v62/github"
2121
"github.com/rs/zerolog"
2222
)
2323

githubapp/context_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"encoding/json"
2121
"testing"
2222

23-
"github.com/google/go-github/v61/github"
23+
"github.com/google/go-github/v62/github"
2424
"github.com/rs/zerolog"
2525
)
2626

githubapp/dispatcher.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"fmt"
2020
"net/http"
2121

22-
"github.com/google/go-github/v61/github"
22+
"github.com/google/go-github/v62/github"
2323
"github.com/pkg/errors"
2424
"github.com/rcrowley/go-metrics"
2525
"github.com/rs/zerolog"

githubapp/installations.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"fmt"
2020
"net/http"
2121

22-
"github.com/google/go-github/v61/github"
22+
"github.com/google/go-github/v62/github"
2323
"github.com/pkg/errors"
2424
)
2525

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.21
55
require (
66
github.com/alexedwards/scs v1.4.1
77
github.com/bradleyfalzon/ghinstallation/v2 v2.10.0
8-
github.com/google/go-github/v61 v61.0.0
8+
github.com/google/go-github/v62 v62.0.0
99
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
1010
github.com/hashicorp/golang-lru v0.6.0
1111
github.com/patrickmn/go-cache v2.1.0+incompatible

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
1212
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
1313
github.com/google/go-github/v60 v60.0.0 h1:oLG98PsLauFvvu4D/YPxq374jhSxFYdzQGNCyONLfn8=
1414
github.com/google/go-github/v60 v60.0.0/go.mod h1:ByhX2dP9XT9o/ll2yXAu2VD8l5eNVg8hD4Cr0S/LmQk=
15-
github.com/google/go-github/v61 v61.0.0 h1:VwQCBwhyE9JclCI+22/7mLB1PuU9eowCXKY5pNlu1go=
16-
github.com/google/go-github/v61 v61.0.0/go.mod h1:0WR+KmsWX75G2EbpyGsGmradjo3IiciuI4BmdVCobQY=
15+
github.com/google/go-github/v62 v62.0.0 h1:/6mGCaRywZz9MuHyw9gD1CwsbmBX8GWsbFkwMmHdhl4=
16+
github.com/google/go-github/v62 v62.0.0/go.mod h1:EMxeUqGJq2xRu9DYBMwel/mr7kZrzUOfQmmpYrZn2a4=
1717
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
1818
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
1919
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 h1:+ngKgrYPPJrOjhax5N+uePQ0Fh1Z7PheYoUI/0nzkPA=

0 commit comments

Comments
 (0)