mirror of
https://github.com/adnanh/webhook.git
synced 2025-05-09 23:24:44 +00:00
Require Go 1.14
When go.mod specifies go 1.14 or higher, the go tools now verify that vendor/modules.txt is consistent with go.mod. Fixed by running `go mod vendor`.
This commit is contained in:
parent
c4f29b5d8b
commit
eefcd7f7d5
3 changed files with 19 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
language: go
|
||||
|
||||
go:
|
||||
- 1.13.x
|
||||
- 1.14.x
|
||||
- master
|
||||
|
||||
os:
|
||||
|
|
2
go.mod
2
go.mod
|
@ -1,6 +1,6 @@
|
|||
module github.com/adnanh/webhook
|
||||
|
||||
go 1.13
|
||||
go 1.14
|
||||
|
||||
require (
|
||||
github.com/clbanning/mxj v1.8.4
|
||||
|
|
17
vendor/modules.txt
vendored
17
vendor/modules.txt
vendored
|
@ -1,20 +1,37 @@
|
|||
# github.com/clbanning/mxj v1.8.4
|
||||
## explicit
|
||||
github.com/clbanning/mxj
|
||||
# github.com/dustin/go-humanize v1.0.0
|
||||
## explicit
|
||||
github.com/dustin/go-humanize
|
||||
# github.com/fsnotify/fsnotify v1.4.7
|
||||
## explicit
|
||||
# github.com/ghodss/yaml v1.0.0
|
||||
## explicit
|
||||
github.com/ghodss/yaml
|
||||
# github.com/go-chi/chi v4.0.2+incompatible
|
||||
## explicit
|
||||
github.com/go-chi/chi
|
||||
github.com/go-chi/chi/middleware
|
||||
# github.com/gofrs/uuid v3.2.0+incompatible
|
||||
## explicit
|
||||
github.com/gofrs/uuid
|
||||
# github.com/gorilla/mux v1.7.3
|
||||
## explicit
|
||||
github.com/gorilla/mux
|
||||
# github.com/kr/pretty v0.1.0
|
||||
## explicit
|
||||
# golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553
|
||||
## explicit
|
||||
# golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8
|
||||
## explicit
|
||||
golang.org/x/sys/unix
|
||||
golang.org/x/sys/windows
|
||||
# gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15
|
||||
## explicit
|
||||
# gopkg.in/fsnotify.v1 v1.4.2
|
||||
## explicit
|
||||
gopkg.in/fsnotify.v1
|
||||
# gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7
|
||||
## explicit
|
||||
gopkg.in/yaml.v2
|
||||
|
|
Loading…
Add table
Reference in a new issue