File tree 5 files changed +43
-324
lines changed
5 files changed +43
-324
lines changed Original file line number Diff line number Diff line change 1
1
# Stage 1: Build the application
2
- FROM golang:1.20 -bullseye as builder
2
+ FROM golang:1.23 -bullseye as builder
3
3
4
4
RUN mkdir /build
5
5
Original file line number Diff line number Diff line change 5
5
"errors"
6
6
"fmt"
7
7
8
- "github.com/google/go-github/github"
8
+ "github.com/google/go-github/v67/ github"
9
9
"golang.org/x/oauth2"
10
10
11
11
"github.com/seabird-chat/seabird-go"
Original file line number Diff line number Diff line change 6
6
"strings"
7
7
"time"
8
8
9
- "github.com/google/go-github/github"
9
+ "github.com/google/go-github/v67/ github"
10
10
"github.com/seabird-chat/seabird-go/pb"
11
11
)
12
12
Original file line number Diff line number Diff line change 1
1
module github.com/seabird-chat/seabird-github-plugin
2
2
3
- go 1.15
3
+ go 1.23
4
4
5
5
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
9
8
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
17
21
)
You can’t perform that action at this time.
0 commit comments