From 37d3fcf2d66004bac62f8f2c71d8fe9e0df7dd80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Antonio=20Fern=C3=A1ndez=20de=20Alba?= Date: Mon, 24 Aug 2026 13:25:56 +0200 Subject: [PATCH] chore: bump pinned library versions --- README.md | 14 +++++++------- action.yml | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 44443a1..9ed342b 100644 --- a/README.md +++ b/README.md @@ -88,13 +88,13 @@ The action has the following parameters: | api_key | Datadog API key. Can be found at | true | | | site | Datadog site. See 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 | | diff --git a/action.yml b/action.yml index bbd543f..06217a3 100644 --- a/action.yml +++ b/action.yml @@ -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