Skip to content

Commit

Permalink
maint: drop go 1.18 (#144)
Browse files Browse the repository at this point in the history
## Which problem is this PR solving?

upstream otel dropped support for go 1.18 in v1.15.0

## Short description of the changes

dropped 1.18 from CI
ran `go mod tidy` with go 1.20

## How to verify that this has the expected result
tests pass
  • Loading branch information
vreynolds authored May 15, 2023
1 parent 3c99d6a commit 8ee9e89
Show file tree
Hide file tree
Showing 4 changed files with 184 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
matrix_goversions: &matrix_goversions
matrix:
parameters:
goversion: ["18", "19", "20"]
goversion: ["19", "20"]

default_goversion: &default_goversion "20"

Expand Down
2 changes: 1 addition & 1 deletion examples/webhook-listener-triggers/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/honeycombio/honeycomb-opentelemetry-go/examples/webhook-listener-triggers

go 1.18
go 1.20

require (
github.com/gorilla/mux v1.8.0
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/honeycombio/honeycomb-opentelemetry-go

go 1.18
go 1.20

require (
github.com/honeycombio/otel-config-go v1.8.0
Expand Down
Loading

0 comments on commit 8ee9e89

Please sign in to comment.