From c3e7ee3163be54e9450d413c4369de6f48f3fb75 Mon Sep 17 00:00:00 2001 From: Steve Mitchell Date: Mon, 28 Feb 2022 11:18:09 -0500 Subject: [PATCH] change go mod version from 1.14 -> 1.17 --- go.mod | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index c85f459..56d1cbe 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,16 @@ module github.com/joemiller/certin -go 1.14 +go 1.17 require ( github.com/spf13/cobra v1.3.0 github.com/stretchr/testify v1.7.0 ) + +require ( + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/inconshreveable/mousetrap v1.0.0 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/spf13/pflag v1.0.5 // indirect + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect +)