Skip to content

Commit abac3e6

Browse files
authored
Merge pull request #79 from wyattjoh/chore/upgrade-go
chore: upgrade go
2 parents 0629abd + 140802f commit abac3e6

File tree

5 files changed

+41
-18
lines changed

5 files changed

+41
-18
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,19 @@ updates:
77
interval: "daily"
88
labels:
99
- "dependencies"
10-
- "🚀 merge it!"
10+
1111
# Update Go dependencies if they're found daily.
1212
- package-ecosystem: "gomod"
1313
directory: "/"
1414
schedule:
1515
interval: "daily"
1616
labels:
1717
- "dependencies"
18-
- "🚀 merge it!"
18+
1919
# Update Github Actions if they're found daily.
2020
- package-ecosystem: "github-actions"
2121
directory: "/"
2222
schedule:
2323
interval: "daily"
2424
labels:
2525
- "dependencies"
26-
- "🚀 merge it!"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fetch-depth: 0
1717
- uses: actions/setup-go@v3
1818
with:
19-
go-version: "^1.16.0"
19+
go-version: "^1.18.1"
2020
- uses: golangci/golangci-lint-action@v3
2121
with:
2222
version: latest

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-go@v3
1515
with:
16-
go-version: "^1.16.0"
16+
go-version: "^1.18.1"
1717
- uses: golangci/golangci-lint-action@v3
1818
with:
1919
version: latest

go.mod

Lines changed: 37 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,58 @@
11
module github.com/wyattjoh/ims
22

3-
go 1.16
3+
go 1.18
44

55
require (
66
cloud.google.com/go/storage v1.22.0
7-
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
87
github.com/disintegration/imaging v1.6.2
9-
github.com/go-ini/ini v1.66.4 // indirect
10-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
11-
github.com/google/btree v1.0.1 // indirect
128
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
139
github.com/meatballhat/negroni-logrus v1.1.1
1410
github.com/minio/minio-go v6.0.14+incompatible
15-
github.com/mitchellh/go-homedir v1.1.0 // indirect
1611
github.com/opentracing/opentracing-go v1.2.0
17-
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
1812
github.com/pkg/errors v0.9.1
1913
github.com/prometheus/client_golang v1.12.1
2014
github.com/rs/cors v1.8.2
2115
github.com/sirupsen/logrus v1.8.1
2216
github.com/uber/jaeger-client-go v2.30.0+incompatible
23-
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
2417
github.com/urfave/cli/v2 v2.5.0
2518
github.com/urfave/negroni v1.0.0
19+
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5
20+
google.golang.org/api v0.76.0
21+
)
22+
23+
require (
24+
cloud.google.com/go v0.100.2 // indirect
25+
cloud.google.com/go/compute v1.6.0 // indirect
26+
cloud.google.com/go/iam v0.3.0 // indirect
27+
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
28+
github.com/beorn7/perks v1.0.1 // indirect
29+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
30+
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
31+
github.com/go-ini/ini v1.66.4 // indirect
32+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
33+
github.com/golang/protobuf v1.5.2 // indirect
34+
github.com/google/btree v1.0.1 // indirect
35+
github.com/google/go-cmp v0.5.7 // indirect
36+
github.com/googleapis/gax-go/v2 v2.3.0 // indirect
37+
github.com/googleapis/go-type-adapters v1.0.0 // indirect
38+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
39+
github.com/mitchellh/go-homedir v1.1.0 // indirect
40+
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
41+
github.com/prometheus/client_model v0.2.0 // indirect
42+
github.com/prometheus/common v0.32.1 // indirect
43+
github.com/prometheus/procfs v0.7.3 // indirect
44+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
45+
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
46+
go.opencensus.io v0.23.0 // indirect
2647
go.uber.org/atomic v1.9.0 // indirect
2748
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd // indirect
2849
golang.org/x/image v0.0.0-20220302094943-723b81ca9867 // indirect
29-
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5
30-
google.golang.org/api v0.76.0
50+
golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect
51+
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
52+
golang.org/x/text v0.3.7 // indirect
53+
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
54+
google.golang.org/appengine v1.6.7 // indirect
55+
google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4 // indirect
56+
google.golang.org/grpc v1.45.0 // indirect
57+
google.golang.org/protobuf v1.28.0 // indirect
3158
)

go.sum

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ cloud.google.com/go/storage v1.22.0 h1:NUV0NNp9nkBuW66BFRLuMgldN60C57ET3dhbwLIYi
5656
cloud.google.com/go/storage v1.22.0/go.mod h1:GbaLEoMqbVm6sx3Z0R++gSiBlgMv6yUi2q1DeGFKQgE=
5757
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
5858
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
59-
github.com/BurntSushi/toml v1.1.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
6059
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
6160
github.com/HdrHistogram/hdrhistogram-go v1.1.2 h1:5IcZpTvzydCQeHzK4Ef/D5rrSqwxob0t8PQPMybUNFM=
6261
github.com/HdrHistogram/hdrhistogram-go v1.1.2/go.mod h1:yDgFjdqOqDEKOvasDdhWNXYg9BVp4O+o5f6V/ehm6Oo=
@@ -73,7 +72,6 @@ github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+Ce
7372
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
7473
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
7574
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
76-
github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko=
7775
github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=
7876
github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
7977
github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE=
@@ -415,7 +413,6 @@ golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLd
415413
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM=
416414
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
417415
golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
418-
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
419416
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
420417
golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
421418
golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=

0 commit comments

Comments
 (0)