feat(go)!: upgrade to Go 1.17 (from 1.15) (#6)

BREAKING CHANGE: Go 1.17 or later is now required, up from Go 1.15.
This commit is contained in:
2025-03-22 01:37:06 +00:00
committed by GitHub
parent f5a03af9ce
commit 85ae6e9ae3
5 changed files with 35 additions and 22 deletions

9
go.mod
View File

@@ -1,8 +1,11 @@
module github.com/jimeh/go-golden
go 1.15
go 1.17
require github.com/stretchr/testify v1.10.0
require (
github.com/jimeh/envctl v0.1.0
github.com/stretchr/testify v1.7.0
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)