Skip to content

Commit d4e4302

Browse files
Excavator: Manage go module dependencies (#273)
1 parent 2ccbe21 commit d4e4302

186 files changed

Lines changed: 2326 additions & 978 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/v40/github"
25+
"github.com/google/go-github/v41/github"
2626
"github.com/palantir/bulldozer/pull"
2727
"github.com/pkg/errors"
2828
"github.com/rs/zerolog"

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/v40/github"
20+
"github.com/google/go-github/v41/github"
2121
"github.com/palantir/bulldozer/pull"
2222
"github.com/pkg/errors"
2323
"github.com/rs/zerolog"

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ go 1.16
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/v40 v40.0.0
8+
github.com/google/go-github/v41 v41.0.0
99
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
1010
github.com/palantir/go-baseapp v0.3.1
11-
github.com/palantir/go-githubapp v0.10.1
11+
github.com/palantir/go-githubapp v0.11.0
1212
github.com/pkg/errors v0.9.1
13-
github.com/rs/zerolog v1.26.0
14-
github.com/spf13/cobra v1.2.1
13+
github.com/rs/zerolog v1.26.1
14+
github.com/spf13/cobra v1.3.0
1515
github.com/stretchr/testify v1.7.0
1616
goji.io v2.0.2+incompatible
1717
gopkg.in/yaml.v2 v2.4.0

go.sum

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

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/v40/github"
22+
"github.com/google/go-github/v41/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
"fmt"
2020

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

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/v40/github"
20+
"github.com/google/go-github/v41/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

Lines changed: 1 addition & 1 deletion
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/v40/github"
21+
"github.com/google/go-github/v41/github"
2222
"github.com/palantir/bulldozer/pull"
2323
"github.com/palantir/go-githubapp/githubapp"
2424
"github.com/pkg/errors"

server/handler/fetcher.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/v40/github"
20+
"github.com/google/go-github/v41/github"
2121
"github.com/palantir/bulldozer/bulldozer"
2222
"github.com/palantir/go-githubapp/appconfig"
2323
"github.com/rs/zerolog"

server/handler/issue_comment.go

Lines changed: 1 addition & 1 deletion
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/v40/github"
21+
"github.com/google/go-github/v41/github"
2222
"github.com/palantir/bulldozer/pull"
2323
"github.com/palantir/go-githubapp/githubapp"
2424
"github.com/pkg/errors"

0 commit comments

Comments
 (0)