feat(deps): upgrade minimum Go version to 1.18 (from 1.15) (#2)

This commit is contained in:
2023-10-13 11:37:40 +01:00
committed by GitHub
parent d03cbac313
commit fc69fe9318
4 changed files with 15 additions and 14 deletions

10
go.mod
View File

@@ -1,10 +1,14 @@
module github.com/romdo/gomockctx
go 1.15
go 1.18
require (
github.com/golang/mock v1.6.0
github.com/stretchr/testify v1.7.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/mock v1.6.0
github.com/stretchr/testify v1.7.0
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)