module: bump minimum Go version to 1.17

This commit is contained in:
cn 2022-01-07 12:07:14 +01:00
parent fb076d3a66
commit 23c2371649
2 changed files with 12 additions and 2 deletions

View File

@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
go:
- '1.16'
- '1.17'
env:
GO111MODULE: on
GOPROXY: direct

12
go.mod
View File

@ -1,12 +1,22 @@
module miflorad
go 1.16
go 1.17
require (
github.com/currantlabs/gatt v0.0.0-20161006170101-f949eac78f4e
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/eclipse/paho.mqtt.golang v1.3.5
github.com/go-ble/ble v0.0.0-20200120171844-0a73a9da88eb
github.com/gorilla/websocket v1.4.2 // indirect
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.10 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/mgutz/logxi v0.0.0-20161027140823-aebf8a7d67ab // indirect
github.com/pkg/errors v0.9.1
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/raff/goble v0.0.0-20190909174656-72afc67d6a99 // indirect
github.com/stretchr/testify v1.7.0
golang.org/x/net v0.0.0-20200425230154-ff2c4b7c35a0 // indirect
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)