From 955eb653410ff1341e3851cff53142e6c4d920f4 Mon Sep 17 00:00:00 2001 From: Daniel Mohedano Date: Thu, 9 Apr 2026 14:27:27 +0200 Subject: [PATCH] feat: update installer to v13 --- README.md | 1 + action.yml | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8bc5820..4465af1 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ The action has the following parameters: | java-tracer-version | The version of Datadog Java tracer to use. Defaults to the latest release. | false | | | js-tracer-version | The version of Datadog JS tracer to use. Defaults to the latest release. | false | | | python-tracer-version | The version of Datadog Python tracer to use. Defaults to the latest release. | false | | +| python-coverage-version | The version of the Python `coverage` package to use. Defaults to `7.13.5`. | false | | | ruby-tracer-version | The version of datadog-ci Ruby gem to use. Defaults to the latest release. | false | | | go-tracer-version | The version of Orchestrion to use. Defaults to the latest release. | false | | | 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 | | diff --git a/action.yml b/action.yml index 9e3d2e1..2b416f7 100644 --- a/action.yml +++ b/action.yml @@ -29,6 +29,9 @@ inputs: python-tracer-version: description: 'The version of Datadog Python tracer to use (optional). Defaults to the latest release.' required: false + python-coverage-version: + description: 'The version of the Python coverage package to use (optional). Defaults to 7.13.5.' + required: false ruby-tracer-version: description: 'The version of datadog-ci Ruby gem to use (optional). Defaults to the latest release.' required: false @@ -72,8 +75,8 @@ runs: echo "$GITHUB_ACTION_PATH" >> $GITHUB_PATH shell: bash env: - INSTALLATION_SCRIPT_URL: https://install.datadoghq.com/scripts/install_test_visibility_v12.sh - INSTALLATION_SCRIPT_CHECKSUM: 91b6c7bb2c28ef5604c2a2b233da7d931a9b3b5d20b7872254ebb0e689e62f4a + INSTALLATION_SCRIPT_URL: https://install.datadoghq.com/scripts/install_test_visibility_v13.sh + INSTALLATION_SCRIPT_CHECKSUM: 1271425bc94d25ff771111802f1b010104f3a9245bd491b67f1be561529f6b89 GITHUB_ACTION_PATH: ${{ github.action_path }} - name: Get Go cache directories @@ -152,6 +155,7 @@ runs: DD_SET_TRACER_VERSION_JAVA: ${{ inputs.java-tracer-version }} DD_SET_TRACER_VERSION_JS: ${{ inputs.js-tracer-version }} DD_SET_TRACER_VERSION_PYTHON: ${{ inputs.python-tracer-version }} + DD_SET_COVERAGE_VERSION_PYTHON: ${{ inputs.python-coverage-version }} DD_SET_TRACER_VERSION_RUBY: ${{ inputs.ruby-tracer-version }} DD_SET_TRACER_VERSION_GO: ${{ inputs.go-tracer-version }} DD_CIVISIBILITY_GO_MODULE_DIR: ${{ inputs.go-module-dir }}