diff --git a/.github/workflows/orchestrion.yml b/.github/workflows/orchestrion.yml index e3a08c723b..b777805632 100644 --- a/.github/workflows/orchestrion.yml +++ b/.github/workflows/orchestrion.yml @@ -17,6 +17,6 @@ concurrency: jobs: test: name: 'Run Tests' - uses: DataDog/orchestrion/.github/workflows/workflow_call.yml@eliott.bouhana/smoke-tests + uses: DataDog/orchestrion/.github/workflows/workflow_call.yml@main # we don't want to pin our own action with: dd-trace-go-ref: ${{ github.sha }} diff --git a/ddtrace/tracer/option.go b/ddtrace/tracer/option.go index df84a0f8a9..55041e943c 100644 --- a/ddtrace/tracer/option.go +++ b/ddtrace/tracer/option.go @@ -98,6 +98,7 @@ var contribIntegrations = map[string]struct { "github.com/valyala/fasthttp": {"FastHTTP", false}, "github.com/zenazn/goji": {"Goji", false}, "log/slog": {"log/slog", false}, + "github.com/uptrace/bun": {"Bun", false}, } var ( diff --git a/ddtrace/tracer/option_test.go b/ddtrace/tracer/option_test.go index 26c5f80343..56d1bc4fb5 100644 --- a/ddtrace/tracer/option_test.go +++ b/ddtrace/tracer/option_test.go @@ -258,7 +258,7 @@ func TestAgentIntegration(t *testing.T) { defer clearIntegrationsForTests() cfg.loadContribIntegrations(nil) - assert.Equal(t, 56, len(cfg.integrations)) + assert.Equal(t, 57, len(cfg.integrations)) for integrationName, v := range cfg.integrations { assert.False(t, v.Instrumented, "integrationName=%s", integrationName) }