Skip to content

Commit b6ee13a

Browse files
Use Go 1.23 for go-mod-tidy action
The action is failing and I think it is because it tries to use an old Go version, see open-telemetry#475
1 parent 83971df commit b6ee13a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tidy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Go
2121
uses: actions/setup-go@v6.0.0
2222
with:
23-
go-version: "1.22"
23+
go-version: "1.23"
2424
- name: Setup Go Environment
2525
run: |
2626
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ require (
66
github.com/cenkalti/backoff/v4 v4.3.0
77
github.com/google/uuid v1.6.0
88
github.com/gorilla/websocket v1.5.3
9+
github.com/madflojo/testcerts v1.4.0
910
github.com/michel-laterman/proxy-connect-dialer-go v0.1.0
1011
github.com/stretchr/testify v1.10.0
1112
google.golang.org/protobuf v1.36.7
@@ -14,7 +15,6 @@ require (
1415
require (
1516
github.com/davecgh/go-spew v1.1.1 // indirect
1617
github.com/google/go-cmp v0.6.0 // indirect
17-
github.com/madflojo/testcerts v1.4.0 // indirect
1818
github.com/pmezard/go-difflib v1.0.0 // indirect
1919
github.com/stretchr/objx v0.5.2 // indirect
2020
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)