Skip to content
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
2 changes: 1 addition & 1 deletion api/checks/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"net/url"
"time"

"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/web-platform-tests/wpt.fyi/api/checks/summaries"
"github.com/web-platform-tests/wpt.fyi/shared"
)
Expand Down
2 changes: 1 addition & 1 deletion api/checks/jwt.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"time"

jwt "github.com/golang-jwt/jwt"
"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/web-platform-tests/wpt.fyi/shared"
"golang.org/x/oauth2"
)
Expand Down
2 changes: 1 addition & 1 deletion api/checks/mock_checks/api_mock.go

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

2 changes: 1 addition & 1 deletion api/checks/runs.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"fmt"
"time"

"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/web-platform-tests/wpt.fyi/api/checks/summaries"
"github.com/web-platform-tests/wpt.fyi/shared"
)
Expand Down
2 changes: 1 addition & 1 deletion api/checks/summaries/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

package summaries

import "github.com/google/go-github/v75/github"
import "github.com/google/go-github/v77/github"

// RecomputeAction is an action that can be taken to
// trigger a recompute of the diff, against the latest
Expand Down
2 changes: 1 addition & 1 deletion api/checks/summaries/actions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package summaries
import (
"testing"

"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion api/checks/summaries/compile.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

mapset "github.com/deckarep/golang-set"

"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/web-platform-tests/wpt.fyi/shared"
)

Expand Down
2 changes: 1 addition & 1 deletion api/checks/summaries/completed.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package summaries

import (
"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/web-platform-tests/wpt.fyi/shared"
)

Expand Down
2 changes: 1 addition & 1 deletion api/checks/summaries/pending.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

package summaries

import "github.com/google/go-github/v75/github"
import "github.com/google/go-github/v77/github"

// Pending is the struct for pending.md.
type Pending struct {
Expand Down
2 changes: 1 addition & 1 deletion api/checks/summaries/regressed.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package summaries

import (
"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/web-platform-tests/wpt.fyi/shared"
)

Expand Down
2 changes: 1 addition & 1 deletion api/checks/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"net/http"
"regexp"

"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/web-platform-tests/wpt.fyi/shared"
)

Expand Down
2 changes: 1 addition & 1 deletion api/checks/webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"testing"

"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/stretchr/testify/assert"
"github.com/web-platform-tests/wpt.fyi/api/checks/mock_checks"
"github.com/web-platform-tests/wpt.fyi/shared"
Expand Down
2 changes: 1 addition & 1 deletion api/ghactions/notify.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

mapset "github.com/deckarep/golang-set"
"github.com/gobwas/glob"
"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
uc "github.com/web-platform-tests/wpt.fyi/api/receiver/client"

"github.com/web-platform-tests/wpt.fyi/shared"
Expand Down
2 changes: 1 addition & 1 deletion api/ghactions/notify_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package ghactions
import (
"testing"

"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion api/manifest/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"regexp"
"time"

"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/web-platform-tests/wpt.fyi/shared"
)

Expand Down
2 changes: 1 addition & 1 deletion api/metadata_cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"net/http"
"time"

"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/web-platform-tests/wpt.fyi/shared"
)

Expand Down
2 changes: 1 addition & 1 deletion api/query/cache/poll/poll.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strconv"
"time"

"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/web-platform-tests/wpt.fyi/api/query"
"github.com/web-platform-tests/wpt.fyi/api/query/cache/index"
"github.com/web-platform-tests/wpt.fyi/shared"
Expand Down
2 changes: 1 addition & 1 deletion api/receiver/mock_receiver/api_mock.go

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

2 changes: 1 addition & 1 deletion api/taskcluster/mock_taskcluster/webhook_mock.go

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

4 changes: 2 additions & 2 deletions api/taskcluster/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ import (
"sync"

mapset "github.com/deckarep/golang-set"
"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
tcurls "github.com/taskcluster/taskcluster-lib-urls"
"github.com/taskcluster/taskcluster/v90/clients/client-go/tcqueue"
"github.com/taskcluster/taskcluster/v92/clients/client-go/tcqueue"
uc "github.com/web-platform-tests/wpt.fyi/api/receiver/client"
"github.com/web-platform-tests/wpt.fyi/shared"
)
Expand Down
2 changes: 1 addition & 1 deletion api/taskcluster/webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"testing"
"time"

"github.com/google/go-github/v75/github"
"github.com/google/go-github/v77/github"
"github.com/stretchr/testify/assert"
uc "github.com/web-platform-tests/wpt.fyi/api/receiver/client"
tc "github.com/web-platform-tests/wpt.fyi/api/taskcluster"
Expand Down
28 changes: 14 additions & 14 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require (
github.com/gobwas/glob v0.2.3
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/gomodule/redigo v1.9.3
github.com/google/go-github/v75 v75.0.0
github.com/google/go-github/v77 v77.0.0
github.com/google/uuid v1.6.0
github.com/gorilla/handlers v1.5.2
github.com/gorilla/mux v1.8.1
Expand All @@ -23,27 +23,27 @@ require (
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.11.1
github.com/taskcluster/taskcluster-lib-urls v13.0.1+incompatible
github.com/taskcluster/taskcluster/v90 v90.0.5
github.com/taskcluster/taskcluster/v92 v92.0.2
github.com/tebeka/selenium v0.9.9
go.uber.org/mock v0.6.0
golang.org/x/lint v0.0.0-20241112194109-818c5a804067
golang.org/x/oauth2 v0.32.0
google.golang.org/api v0.255.0
google.golang.org/genproto v0.0.0-20251006185510-65f7160b3a87
google.golang.org/genproto/googleapis/api v0.0.0-20251006185510-65f7160b3a87
google.golang.org/genproto v0.0.0-20251103181224-f26f9409b101
google.golang.org/genproto/googleapis/api v0.0.0-20251103181224-f26f9409b101
google.golang.org/grpc v1.76.0
gopkg.in/yaml.v3 v3.0.1
)

require (
cel.dev/expr v0.24.0 // indirect
cel.dev/expr v0.25.0 // indirect
cloud.google.com/go v0.123.0 // indirect
cloud.google.com/go/auth v0.17.0 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
cloud.google.com/go/compute/metadata v0.9.0 // indirect
cloud.google.com/go/iam v1.5.2 // indirect
cloud.google.com/go/longrunning v0.6.7 // indirect
cloud.google.com/go/monitoring v1.24.2 // indirect
cloud.google.com/go/iam v1.5.3 // indirect
cloud.google.com/go/longrunning v0.7.0 // indirect
cloud.google.com/go/monitoring v1.24.3 // indirect
github.com/BurntSushi/xgb v0.0.0-20200324125942-20f126ea2843 // indirect
github.com/BurntSushi/xgbutil v0.0.0-20190907113008-ad855c713046 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.30.0 // indirect
Expand All @@ -52,9 +52,9 @@ require (
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443 // indirect
github.com/cncf/xds/go v0.0.0-20251031190108-5cf4b1949528 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/envoyproxy/go-control-plane/envoy v1.35.0 // indirect
github.com/envoyproxy/go-control-plane/envoy v1.36.0 // indirect
github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect
github.com/fatih/camelcase v1.0.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
Expand All @@ -63,7 +63,7 @@ require (
github.com/go-logr/stdr v1.2.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/s2a-go v0.1.9 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.7 // indirect
github.com/googleapis/gax-go/v2 v2.15.0 // indirect
github.com/johncgriffin/overflow v0.0.0-20211019200055-46fa312c352c // indirect
github.com/orcaman/writerseeker v0.0.0-20200621085525-1d3f536ff85e // indirect
Expand All @@ -84,14 +84,14 @@ require (
go.opentelemetry.io/otel/sdk/metric v1.38.0 // indirect
go.opentelemetry.io/otel/trace v1.38.0 // indirect
golang.org/x/crypto v0.43.0 // indirect
golang.org/x/mod v0.28.0 // indirect
golang.org/x/mod v0.29.0 // indirect
golang.org/x/net v0.46.0 // indirect
golang.org/x/sync v0.17.0 // indirect
golang.org/x/sys v0.37.0 // indirect
golang.org/x/text v0.30.0 // indirect
golang.org/x/time v0.14.0 // indirect
golang.org/x/tools v0.37.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20251029180050-ab9386a59fda // indirect
golang.org/x/tools v0.38.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20251103181224-f26f9409b101 // indirect
google.golang.org/protobuf v1.36.10 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
Expand Down
Loading