Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions example/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ require (
github.com/bradleyfalzon/ghinstallation/v2 v2.18.0
github.com/gofri/go-github-pagination v1.0.1
github.com/gofri/go-github-ratelimit/v2 v2.0.2
github.com/google/go-github/otel/v85 v85.0.0
github.com/google/go-github/v85 v85.0.0
github.com/google/go-github/v85/otel v0.0.0-00010101000000-000000000000
github.com/sigstore/sigstore-go v1.1.4
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.43.0
go.opentelemetry.io/otel/sdk v1.43.0
Expand Down Expand Up @@ -90,4 +90,4 @@ require (
// Use version at HEAD, not the latest published.
replace github.com/google/go-github/v85 => ../

replace github.com/google/go-github/v85/otel => ../otel
replace github.com/google/go-github/otel/v85 => ../otel
2 changes: 1 addition & 1 deletion example/otel/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"log"
"net/http"

"github.com/google/go-github/otel/v85"
"github.com/google/go-github/v85/github"
"github.com/google/go-github/v85/otel"
"go.opentelemetry.io/otel/exporters/stdout/stdouttrace"
"go.opentelemetry.io/otel/sdk/trace"
)
Expand Down
2 changes: 1 addition & 1 deletion otel/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/google/go-github/v85/otel
module github.com/google/go-github/otel/v85

go 1.25.0

Expand Down
Loading