Skip to content

Commit 781e1ce

Browse files
committed
build: upgrade dependencys
1 parent 224c1ca commit 781e1ce

File tree

3 files changed

+144
-186
lines changed

3 files changed

+144
-186
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM golang:1.16 as builder
1+
FROM golang:1.18-alpine as builder
22

33
ENV container docker
44

55
ADD . /go/src/github.com/argcv/hou
66

7-
RUN cd /go/src/github.com/argcv/hou && bash ./build.sh
7+
RUN cd /go/src/github.com/argcv/hou && sh ./build.sh
88

99
#FROM scratch
1010
FROM alpine

go.mod

+40-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,47 @@
11
module github.com/argcv/hou
22

3-
go 1.16
3+
go 1.18
44

55
require (
66
github.com/argcv/stork v0.0.2
7-
github.com/gin-gonic/gin v1.7.2
7+
github.com/gin-gonic/gin v1.8.1
88
github.com/olekukonko/tablewriter v0.0.5
9-
github.com/spf13/cobra v1.2.1
10-
github.com/spf13/viper v1.8.1
9+
github.com/spf13/cobra v1.5.0
10+
github.com/spf13/viper v1.12.0
11+
)
12+
13+
require (
14+
github.com/fsnotify/fsnotify v1.5.4 // indirect
15+
github.com/gin-contrib/sse v0.1.0 // indirect
16+
github.com/go-playground/locales v0.14.0 // indirect
17+
github.com/go-playground/universal-translator v0.18.0 // indirect
18+
github.com/go-playground/validator/v10 v10.11.0 // indirect
19+
github.com/goccy/go-json v0.9.8 // indirect
20+
github.com/hashicorp/hcl v1.0.0 // indirect
21+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
22+
github.com/json-iterator/go v1.1.12 // indirect
23+
github.com/leodido/go-urn v1.2.1 // indirect
24+
github.com/magiconair/properties v1.8.6 // indirect
25+
github.com/mattn/go-isatty v0.0.14 // indirect
26+
github.com/mattn/go-runewidth v0.0.13 // indirect
27+
github.com/mitchellh/mapstructure v1.5.0 // indirect
28+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
29+
github.com/modern-go/reflect2 v1.0.2 // indirect
30+
github.com/pelletier/go-toml v1.9.5 // indirect
31+
github.com/pelletier/go-toml/v2 v2.0.2 // indirect
32+
github.com/rivo/uniseg v0.2.0 // indirect
33+
github.com/spf13/afero v1.8.2 // indirect
34+
github.com/spf13/cast v1.5.0 // indirect
35+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
36+
github.com/spf13/pflag v1.0.5 // indirect
37+
github.com/subosito/gotenv v1.4.0 // indirect
38+
github.com/ugorji/go/codec v1.2.7 // indirect
39+
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
40+
golang.org/x/net v0.0.0-20220630215102-69896b714898 // indirect
41+
golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e // indirect
42+
golang.org/x/text v0.3.7 // indirect
43+
google.golang.org/protobuf v1.28.0 // indirect
44+
gopkg.in/ini.v1 v1.66.6 // indirect
45+
gopkg.in/yaml.v2 v2.4.0 // indirect
46+
gopkg.in/yaml.v3 v3.0.1 // indirect
1147
)

0 commit comments

Comments
 (0)