Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Excavator: Manage go module dependencies #839

Merged
merged 2 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ require (
github.com/bluekeyes/templatetree v0.5.0
github.com/c2h5oh/datasize v0.0.0-20171227191756-4eba002a5eae
github.com/die-net/lrucache v0.0.0-20181227122439-19a39ef22a11
github.com/google/go-github/v63 v63.0.0
github.com/google/go-github/v65 v65.0.0
github.com/google/go-querystring v1.1.0
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
github.com/hashicorp/golang-lru v1.0.2
github.com/palantir/go-baseapp v0.5.2
github.com/palantir/go-githubapp v0.27.0
github.com/palantir/go-githubapp v0.29.0
github.com/pkg/errors v0.9.1
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
github.com/rs/zerolog v1.33.0
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ 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/v62 v62.0.0 h1:/6mGCaRywZz9MuHyw9gD1CwsbmBX8GWsbFkwMmHdhl4=
github.com/google/go-github/v62 v62.0.0/go.mod h1:EMxeUqGJq2xRu9DYBMwel/mr7kZrzUOfQmmpYrZn2a4=
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/v65 v65.0.0 h1:pQ7BmO3DZivvFk92geC0jB0q2m3gyn8vnYPgV7GSLhQ=
github.com/google/go-github/v65 v65.0.0/go.mod h1:DvrqWo5hvsdhJvHd4WyVF9ttANN3BniqjP8uTFMNb60=
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/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 h1:+ngKgrYPPJrOjhax5N+uePQ0Fh1Z7PheYoUI/0nzkPA=
Expand All @@ -67,8 +67,8 @@ github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zk
github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
github.com/palantir/go-baseapp v0.5.2 h1:b1ukx7AXo2/E4NkUvTFlW+185uwCcifzd2XzLrG4oS8=
github.com/palantir/go-baseapp v0.5.2/go.mod h1:uijQMPfmgV69oiMu2jkskum/4HiYuEP/gzrnphD+/Co=
github.com/palantir/go-githubapp v0.27.0 h1:YTSnLElOVOSSFOqCiAyc1wpZMQjGmMvjas0W/F9W4Jk=
github.com/palantir/go-githubapp v0.27.0/go.mod h1:yi9WLdjHkIfeZMetaZyCFJLcxocmrYdd+e5BJTfkimI=
github.com/palantir/go-githubapp v0.29.0 h1:A+qVkCFLv0G+rKzirTC69A7ahocDSP7M5YF+ggcKxjw=
github.com/palantir/go-githubapp v0.29.0/go.mod h1:kW5/8apPtr10wTEtlp0yIyzU37Sfd6f3nD4iyqZA7ao=
github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc=
github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ=
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
Expand Down
2 changes: 1 addition & 1 deletion policy/predicate/status_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"strings"
"testing"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/policy-bot/policy/common"
"github.com/palantir/policy-bot/pull"
"github.com/palantir/policy-bot/pull/pulltest"
Expand Down
2 changes: 1 addition & 1 deletion pull/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"strings"
"time"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/pkg/errors"
"github.com/shurcooL/githubv4"
)
Expand Down
2 changes: 1 addition & 1 deletion pull/github_membership.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"context"
"strings"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion pull/github_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"testing"
"time"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/shurcooL/githubv4"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
Expand Down
2 changes: 1 addition & 1 deletion pull/list_teams.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"net/url"
"reflect"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/google/go-querystring/query"
)

Expand Down
2 changes: 1 addition & 1 deletion server/handler/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package handler
import (
"context"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/go-baseapp/baseapp"
"github.com/palantir/go-githubapp/githubapp"
"github.com/palantir/policy-bot/policy/common"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/check_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"context"
"encoding/json"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/go-githubapp/githubapp"
"github.com/palantir/policy-bot/policy/common"
"github.com/palantir/policy-bot/pull"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/cross_org.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"context"
"strings"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/go-githubapp/githubapp"
"github.com/palantir/policy-bot/pull"
"github.com/pkg/errors"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/details.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"github.com/alexedwards/scs"
"github.com/bluekeyes/hatpear"
"github.com/bluekeyes/templatetree"
"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/go-githubapp/githubapp"
"github.com/palantir/policy-bot/policy/common"
"github.com/palantir/policy-bot/pull"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/eval_context.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"fmt"
"strings"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/policy-bot/policy"
"github.com/palantir/policy-bot/policy/common"
"github.com/palantir/policy-bot/pull"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/eval_context_reviewers.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"math/rand"
"time"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/policy-bot/policy/common"
"github.com/palantir/policy-bot/policy/reviewer"
"github.com/palantir/policy-bot/pull"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/fetcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package handler
import (
"context"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/go-githubapp/appconfig"
"github.com/palantir/policy-bot/policy"
"gopkg.in/yaml.v2"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/installation.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"fmt"
"strings"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/go-githubapp/githubapp"
"github.com/pkg/errors"
"github.com/rs/zerolog"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/issue_comment.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"encoding/json"
"fmt"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/go-githubapp/githubapp"
"github.com/palantir/policy-bot/policy"
"github.com/palantir/policy-bot/policy/common"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/login.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

"github.com/alexedwards/scs"
"github.com/bluekeyes/hatpear"
"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/go-githubapp/githubapp"
"github.com/palantir/go-githubapp/oauth2"
"github.com/pkg/errors"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/merge_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"fmt"
"strings"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/go-githubapp/githubapp"
"github.com/pkg/errors"
"github.com/rs/zerolog"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/pull_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"context"
"encoding/json"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/go-githubapp/githubapp"
"github.com/palantir/policy-bot/policy/common"
"github.com/palantir/policy-bot/pull"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/pull_request_review.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"context"
"encoding/json"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/go-githubapp/githubapp"
"github.com/palantir/policy-bot/policy"
"github.com/palantir/policy-bot/policy/common"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"fmt"
"strings"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/go-githubapp/githubapp"
"github.com/palantir/policy-bot/policy/common"
"github.com/palantir/policy-bot/pull"
Expand Down
2 changes: 1 addition & 1 deletion server/handler/workflow_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"context"
"encoding/json"

"github.com/google/go-github/v63/github"
"github.com/google/go-github/v65/github"
"github.com/palantir/go-githubapp/githubapp"
"github.com/palantir/policy-bot/policy/common"
"github.com/palantir/policy-bot/pull"
Expand Down

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading