Skip to content

Commit e0fe11d

Browse files
committed
Update go-github to v71
1 parent 87748a6 commit e0fe11d

195 files changed

Lines changed: 72 additions & 69981 deletions

File tree

Some content is hidden

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

bulldozer/merge.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"strings"
2323
"time"
2424

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

bulldozer/merge_test.go

Lines changed: 1 addition & 1 deletion
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/v70/github"
25+
"github.com/google/go-github/v71/github"
2626
"github.com/palantir/bulldozer/pull"
2727
"github.com/palantir/bulldozer/pull/pulltest"
2828
"github.com/stretchr/testify/assert"

bulldozer/update.go

Lines changed: 1 addition & 1 deletion
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/v70/github"
20+
"github.com/google/go-github/v71/github"
2121
"github.com/palantir/bulldozer/pull"
2222
"github.com/pkg/errors"
2323
"github.com/rs/zerolog"

excavator_fail/excavator_fail.go

Lines changed: 57 additions & 57 deletions
Large diffs are not rendered by default.

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
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/v70 v70.0.0
8+
github.com/google/go-github/v71 v71.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.35.0
@@ -28,7 +28,6 @@ require (
2828
github.com/davecgh/go-spew v1.1.1 // indirect
2929
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
3030
github.com/golang/protobuf v1.5.3 // indirect
31-
github.com/google/go-github/v71 v71.0.0 // indirect
3231
github.com/google/go-querystring v1.1.0 // indirect
3332
github.com/hashicorp/golang-lru v0.6.0 // indirect
3433
github.com/inconshreveable/mousetrap v1.1.0 // indirect

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
3232
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
3333
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
3434
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
35-
github.com/google/go-github/v70 v70.0.0 h1:/tqCp5KPrcvqCc7vIvYyFYTiCGrYvaWoYMGHSQbo55o=
36-
github.com/google/go-github/v70 v70.0.0/go.mod h1:xBUZgo8MI3lUL/hwxl3hlceJW1U8MVnXP3zUyI+rhQY=
3735
github.com/google/go-github/v71 v71.0.0 h1:Zi16OymGKZZMm8ZliffVVJ/Q9YZreDKONCr+WUd0Z30=
3836
github.com/google/go-github/v71 v71.0.0/go.mod h1:URZXObp2BLlMjwu0O8g4y6VBneUj2bCHgnI8FfgZ51M=
3937
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=

pull/github_context.go

Lines changed: 1 addition & 1 deletion
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/v70/github"
22+
"github.com/google/go-github/v71/github"
2323
"github.com/pkg/errors"
2424
)
2525

pull/pull_requests.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"context"
1919
"strings"
2020

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

pull/pull_requests_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"context"
2121
"testing"
2222

23-
"github.com/google/go-github/v70/github"
23+
"github.com/google/go-github/v71/github"
2424
"github.com/stretchr/testify/assert"
2525
"github.com/stretchr/testify/mock"
2626
)

server/handler/base.go

Lines changed: 1 addition & 1 deletion
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/v70/github"
20+
"github.com/google/go-github/v71/github"
2121
"github.com/palantir/bulldozer/bulldozer"
2222
"github.com/palantir/bulldozer/pull"
2323
"github.com/palantir/go-githubapp/githubapp"

0 commit comments

Comments
 (0)