Skip to content

Commit 04a7b2d

Browse files
authored
chore: Monthly go updates (#4466)
This is part of the monthly changes to keep the following packages updated: - github.com/google/go-github/v{XY} - github.com/taskcluster/taskcluster/v{XY} --- Other changes - Update the go toolchain to the latest version - Run go get -u ./... - Change the go directive in go.mod to go 1.24.5 (to match the latest go version)
1 parent 91323af commit 04a7b2d

36 files changed

+96
-55
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# vim: set expandtab sw=4
2-
FROM golang:1.24.4-bookworm
2+
FROM golang:1.24.5-bookworm
33

44
# Create a non-priviledged user to run browsers as (Firefox and Chrome do not
55
# like to run as root).

api/checks/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"net/url"
1313
"time"
1414

15-
"github.com/google/go-github/v72/github"
15+
"github.com/google/go-github/v73/github"
1616
"github.com/web-platform-tests/wpt.fyi/api/checks/summaries"
1717
"github.com/web-platform-tests/wpt.fyi/shared"
1818
)

api/checks/jwt.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"time"
1717

1818
jwt "github.com/golang-jwt/jwt"
19-
"github.com/google/go-github/v72/github"
19+
"github.com/google/go-github/v73/github"
2020
"github.com/web-platform-tests/wpt.fyi/shared"
2121
"golang.org/x/oauth2"
2222
)

api/checks/mock_checks/api_mock.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/checks/runs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"fmt"
1010
"time"
1111

12-
"github.com/google/go-github/v72/github"
12+
"github.com/google/go-github/v73/github"
1313
"github.com/web-platform-tests/wpt.fyi/api/checks/summaries"
1414
"github.com/web-platform-tests/wpt.fyi/shared"
1515
)

api/checks/summaries/actions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
package summaries
66

7-
import "github.com/google/go-github/v72/github"
7+
import "github.com/google/go-github/v73/github"
88

99
// RecomputeAction is an action that can be taken to
1010
// trigger a recompute of the diff, against the latest

api/checks/summaries/actions_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ package summaries
1010
import (
1111
"testing"
1212

13-
"github.com/google/go-github/v72/github"
13+
"github.com/google/go-github/v73/github"
1414
"github.com/stretchr/testify/assert"
1515
)
1616

api/checks/summaries/compile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414

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

17-
"github.com/google/go-github/v72/github"
17+
"github.com/google/go-github/v73/github"
1818
"github.com/web-platform-tests/wpt.fyi/shared"
1919
)
2020

api/checks/summaries/completed.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
package summaries
66

77
import (
8-
"github.com/google/go-github/v72/github"
8+
"github.com/google/go-github/v73/github"
99
"github.com/web-platform-tests/wpt.fyi/shared"
1010
)
1111

api/checks/summaries/pending.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
package summaries
66

7-
import "github.com/google/go-github/v72/github"
7+
import "github.com/google/go-github/v73/github"
88

99
// Pending is the struct for pending.md.
1010
type Pending struct {

0 commit comments

Comments
 (0)