Skip to content

Commit 221d6cc

Browse files
committed
Update Go version to 1.24.0; update dependencies
1 parent 12e1af4 commit 221d6cc

File tree

4 files changed

+29
-572
lines changed

4 files changed

+29
-572
lines changed

.github/workflows/build-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
- go.sum
1919

2020
env:
21-
GO_VERSION: 1.16.7
21+
GO_VERSION: 1.24.0
2222

2323
jobs:
2424
build:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.16.7
1+
ARG GO_VERSION=1.24.0
22

33
FROM golang:${GO_VERSION}-alpine
44

go.mod

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
module github.com/upsidr/merge-gatekeeper
22

3-
go 1.16
3+
go 1.23.0
4+
5+
toolchain go1.24.0
46

57
require (
68
github.com/google/go-github/v38 v38.1.0
9+
github.com/spf13/cobra v1.9.1
10+
golang.org/x/oauth2 v0.28.0
11+
)
12+
13+
require (
14+
github.com/google/go-cmp v0.6.0 // indirect
715
github.com/google/go-querystring v1.1.0 // indirect
8-
github.com/spf13/cobra v1.2.1
9-
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f
16+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
17+
github.com/spf13/pflag v1.0.6 // indirect
18+
golang.org/x/crypto v0.36.0 // indirect
1019
)

0 commit comments

Comments
 (0)