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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ The action has the following parameters:
| api_key | Datadog API key. Can be found at <https://app.datadoghq.com/organization-settings/api-keys> | true | |
| site | Datadog site. See <https://docs.datadoghq.com/getting_started/site> for more information about sites. | false | datadoghq.com |
| service | The name of the service or library being tested. | false | |
| dotnet-tracer-version | The version of Datadog .NET tracer to use. | false | 3.49.0 |
| java-tracer-version | The version of Datadog Java tracer to use. | false | 1.64.0 |
| js-tracer-version | The version of Datadog JS tracer to use. | false | 6.3.0 |
| python-tracer-version | The version of Datadog Python tracer to use. | false | 4.11.0 |
| python-coverage-version | The version of the Python `coverage` package to use. | false | 7.15.1 |
| ruby-tracer-version | The version of datadog-ci Ruby gem to use. | false | 1.34.0 |
| go-tracer-version | The version of Orchestrion to use. | false | v1.11.0 |
| dotnet-tracer-version | The version of Datadog .NET tracer to use. | false | 3.50.0 |
| java-tracer-version | The version of Datadog Java tracer to use. | false | 1.65.1 |
| js-tracer-version | The version of Datadog JS tracer to use. | false | 6.12.0 |
| python-tracer-version | The version of Datadog Python tracer to use. | false | 4.13.1 |
| python-coverage-version | The version of the Python `coverage` package to use. | false | 7.15.4 |
| ruby-tracer-version | The version of datadog-ci Ruby gem to use. | false | 1.37.0 |
| go-tracer-version | The version of Orchestrion to use. | false | v1.12.2 |
| go-module-dir | Path to the Go module root directory to instrument. Use this when the repository contains multiple Go modules or the Go module is not in the workspace root. | false | |
| java-instrumented-build-system | If provided, only the specified build systems will be instrumented (allowed values are `gradle`,`maven`,`sbt`,`ant`,`all`). `all` is a special value that instruments every Java process. If this property is not provided, all known build systems will be instrumented (Gradle, Maven, SBT, Ant). | false | |
| java-tracer-repository-url | Base URL of a Maven repository (or proxy/mirror) used to download the Java tracer JAR and its sha256. The path under the base must follow the standard Maven layout for `com.datadoghq:dd-java-agent`. Defaults to Maven Central. | false | |
Expand Down
14 changes: 7 additions & 7 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,31 +20,31 @@ inputs:
dotnet-tracer-version:
description: 'The version of Datadog .NET tracer to use (optional). Defaults to the version pinned by this action release.'
required: false
default: '3.49.0'
default: '3.50.0'
java-tracer-version:
description: 'The version of Datadog Java tracer to use (optional). Defaults to the version pinned by this action release.'
required: false
default: '1.64.0'
default: '1.65.1'
js-tracer-version:
description: 'The version of Datadog JS tracer to use (optional). Defaults to the version pinned by this action release.'
required: false
default: '6.3.0'
default: '6.12.0'
python-tracer-version:
description: 'The version of Datadog Python tracer to use (optional). Defaults to the version pinned by this action release.'
required: false
default: '4.11.0'
default: '4.13.1'
python-coverage-version:
description: 'The version of the Python coverage package to use (optional). Defaults to the version pinned by this action release.'
required: false
default: '7.15.1'
default: '7.15.4'
ruby-tracer-version:
description: 'The version of datadog-ci Ruby gem to use (optional). Defaults to the version pinned by this action release.'
required: false
default: '1.34.0'
default: '1.37.0'
go-tracer-version:
description: 'The version of Orchestrion automatic compile-time instrumentation of Go code (https://github.com/datadog/orchestrion) to use (optional). Defaults to the version pinned by this action release.'
required: false
default: 'v1.11.0'
default: 'v1.12.2'
go-module-dir:
description: 'Path to the Go module root directory to instrument (optional). Use this when the repository contains multiple Go modules or the Go module is not in the workspace root.'
required: false
Expand Down
Loading