Skip to content

Commit 6d59afa

Browse files
committed
Upgrade to Go 1.23 & bump all deps
Signed-off-by: Jared Ledvina <jared@techsmix.net>
1 parent c4dfa98 commit 6d59afa

File tree

5 files changed

+43
-324
lines changed

5 files changed

+43
-324
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Build the application
2-
FROM golang:1.20-bullseye as builder
2+
FROM golang:1.23-bullseye as builder
33

44
RUN mkdir /build
55

client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"errors"
66
"fmt"
77

8-
"github.com/google/go-github/github"
8+
"github.com/google/go-github/v67/github"
99
"golang.org/x/oauth2"
1010

1111
"github.com/seabird-chat/seabird-go"

command_issue.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strings"
77
"time"
88

9-
"github.com/google/go-github/github"
9+
"github.com/google/go-github/v67/github"
1010
"github.com/seabird-chat/seabird-go/pb"
1111
)
1212

go.mod

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
module github.com/seabird-chat/seabird-github-plugin
22

3-
go 1.15
3+
go 1.23
44

55
require (
6-
github.com/google/go-github v17.0.0+incompatible
7-
github.com/google/go-querystring v1.0.0 // indirect
8-
github.com/joho/godotenv v1.3.0
6+
github.com/google/go-github/v67 v67.0.0
7+
github.com/joho/godotenv v1.5.1
98
github.com/seabird-chat/seabird-go v0.4.0
10-
golang.org/x/net v0.0.0-20201224014010-6772e930b67b // indirect
11-
golang.org/x/oauth2 v0.0.0-20210112200429-01de73cf58bd
12-
golang.org/x/sys v0.0.0-20210112091331-59c308dcf3cc // indirect
13-
golang.org/x/text v0.3.5 // indirect
14-
google.golang.org/appengine v1.6.7 // indirect
15-
google.golang.org/genproto v0.0.0-20210111234610-22ae2b108f89 // indirect
16-
google.golang.org/grpc v1.34.1 // indirect
9+
golang.org/x/oauth2 v0.24.0
10+
)
11+
12+
require (
13+
github.com/golang/protobuf v1.5.4 // indirect
14+
github.com/google/go-querystring v1.1.0 // indirect
15+
golang.org/x/net v0.32.0 // indirect
16+
golang.org/x/sys v0.28.0 // indirect
17+
golang.org/x/text v0.21.0 // indirect
18+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241206012308-a4fef0638583 // indirect
19+
google.golang.org/grpc v1.68.1 // indirect
20+
google.golang.org/protobuf v1.35.2 // indirect
1721
)

0 commit comments

Comments
 (0)