Skip to content

Commit bc1e49f

Browse files
committed
Update go-github to v62
1 parent 55fe76b commit bc1e49f

File tree

181 files changed

+14
-61207
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+14
-61207
lines changed

-excavator_output.txt

-71
This file was deleted.

bulldozer/merge.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"strings"
2323
"time"
2424

25-
"github.com/google/go-github/v61/github"
25+
"github.com/google/go-github/v62/github"
2626
"github.com/palantir/bulldozer/pull"
2727
"github.com/pkg/errors"
2828
"github.com/rs/zerolog"

bulldozer/merge_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"net/http"
2323
"testing"
2424

25-
"github.com/google/go-github/v61/github"
25+
"github.com/google/go-github/v62/github"
2626
"github.com/palantir/bulldozer/pull"
2727
"github.com/palantir/bulldozer/pull/pulltest"
2828
"github.com/stretchr/testify/assert"

bulldozer/update.go

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

20-
"github.com/google/go-github/v61/github"
20+
"github.com/google/go-github/v62/github"
2121
"github.com/palantir/bulldozer/pull"
2222
"github.com/pkg/errors"
2323
"github.com/rs/zerolog"

excavator_fail/excavator_fail.go

-4
This file was deleted.

go.mod

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.21
55
require (
66
github.com/c2h5oh/datasize v0.0.0-20171227191756-4eba002a5eae
77
github.com/die-net/lrucache v0.0.0-20181227122439-19a39ef22a11
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/palantir/go-baseapp v0.5.2
1111
github.com/palantir/go-githubapp v0.26.0
@@ -29,7 +29,6 @@ require (
2929
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
3030
github.com/golang/protobuf v1.5.3 // indirect
3131
github.com/google/go-github/v60 v60.0.0 // indirect
32-
github.com/google/go-github/v62 v62.0.0 // indirect
3332
github.com/google/go-querystring v1.1.0 // indirect
3433
github.com/hashicorp/golang-lru v0.6.0 // indirect
3534
github.com/inconshreveable/mousetrap v1.1.0 // indirect

go.sum

-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
3434
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
3535
github.com/google/go-github/v60 v60.0.0 h1:oLG98PsLauFvvu4D/YPxq374jhSxFYdzQGNCyONLfn8=
3636
github.com/google/go-github/v60 v60.0.0/go.mod h1:ByhX2dP9XT9o/ll2yXAu2VD8l5eNVg8hD4Cr0S/LmQk=
37-
github.com/google/go-github/v61 v61.0.0 h1:VwQCBwhyE9JclCI+22/7mLB1PuU9eowCXKY5pNlu1go=
38-
github.com/google/go-github/v61 v61.0.0/go.mod h1:0WR+KmsWX75G2EbpyGsGmradjo3IiciuI4BmdVCobQY=
3937
github.com/google/go-github/v62 v62.0.0 h1:/6mGCaRywZz9MuHyw9gD1CwsbmBX8GWsbFkwMmHdhl4=
4038
github.com/google/go-github/v62 v62.0.0/go.mod h1:EMxeUqGJq2xRu9DYBMwel/mr7kZrzUOfQmmpYrZn2a4=
4139
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=

pull/github_context.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

pull/pull_requests.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"context"
1919
"fmt"
2020

21-
"github.com/google/go-github/v61/github"
21+
"github.com/google/go-github/v62/github"
2222
"github.com/pkg/errors"
2323
"github.com/rs/zerolog"
2424
)

server/handler/base.go

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

20-
"github.com/google/go-github/v61/github"
20+
"github.com/google/go-github/v62/github"
2121
"github.com/palantir/bulldozer/bulldozer"
2222
"github.com/palantir/bulldozer/pull"
2323
"github.com/palantir/go-githubapp/githubapp"

server/handler/check_run.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"context"
1919
"encoding/json"
2020

21-
"github.com/google/go-github/v61/github"
21+
"github.com/google/go-github/v62/github"
2222
"github.com/palantir/bulldozer/pull"
2323
"github.com/palantir/go-githubapp/githubapp"
2424
"github.com/pkg/errors"

server/handler/fetcher.go

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

20-
"github.com/google/go-github/v61/github"
20+
"github.com/google/go-github/v62/github"
2121
"github.com/palantir/bulldozer/bulldozer"
2222
"github.com/palantir/go-githubapp/appconfig"
2323
"github.com/rs/zerolog"

server/handler/issue_comment.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"context"
1919
"encoding/json"
2020

21-
"github.com/google/go-github/v61/github"
21+
"github.com/google/go-github/v62/github"
2222
"github.com/palantir/bulldozer/pull"
2323
"github.com/palantir/go-githubapp/githubapp"
2424
"github.com/pkg/errors"

server/handler/pull_request.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"context"
1919
"encoding/json"
2020

21-
"github.com/google/go-github/v61/github"
21+
"github.com/google/go-github/v62/github"
2222
"github.com/palantir/bulldozer/pull"
2323
"github.com/palantir/go-githubapp/githubapp"
2424
"github.com/pkg/errors"

server/handler/pull_request_review.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"context"
1919
"encoding/json"
2020

21-
"github.com/google/go-github/v61/github"
21+
"github.com/google/go-github/v62/github"
2222
"github.com/palantir/bulldozer/pull"
2323
"github.com/palantir/go-githubapp/githubapp"
2424
"github.com/pkg/errors"

server/handler/push.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"context"
1919
"encoding/json"
2020

21-
"github.com/google/go-github/v61/github"
21+
"github.com/google/go-github/v62/github"
2222
"github.com/palantir/bulldozer/pull"
2323
"github.com/palantir/go-githubapp/githubapp"
2424
"github.com/pkg/errors"

server/handler/status.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"context"
1919
"encoding/json"
2020

21-
"github.com/google/go-github/v61/github"
21+
"github.com/google/go-github/v62/github"
2222
"github.com/palantir/bulldozer/pull"
2323
"github.com/palantir/go-githubapp/githubapp"
2424
"github.com/pkg/errors"

0 commit comments

Comments
 (0)