Skip to content

Commit

Permalink
maint: bump the go versions we support (#55)
Browse files Browse the repository at this point in the history
This updates the Go versions supported and tested by this module to go
1.17 and above.
  • Loading branch information
kentquirk authored Mar 15, 2023
1 parent c439884 commit 91cc927
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ filters_publish: &filters_publish
matrix_goversions: &matrix_goversions
matrix:
parameters:
goversion: ["16", "17", "18", "19"]
goversion: ["17", "18", "19", "20"]

# Default version of Go to use for Go steps
default_goversion: &default_goversion "18"
default_goversion: &default_goversion "20"

executors:
go:
Expand Down
8 changes: 7 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
module github.com/honeycombio/dynsampler-go

go 1.12
go 1.17

require github.com/stretchr/testify v1.8.2

require (
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
)

0 comments on commit 91cc927

Please sign in to comment.