Skip to content

Commit ef8406b

Browse files
feat: update installer to v13 (#63)
1 parent cd8da43 commit ef8406b

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ The action has the following parameters:
4545
| java-tracer-version | The version of Datadog Java tracer to use. Defaults to the latest release. | false | |
4646
| js-tracer-version | The version of Datadog JS tracer to use. Defaults to the latest release. | false | |
4747
| python-tracer-version | The version of Datadog Python tracer to use. Defaults to the latest release. | false | |
48+
| python-coverage-version | The version of the Python `coverage` package to use. Defaults to `7.13.5`. | false | |
4849
| ruby-tracer-version | The version of datadog-ci Ruby gem to use. Defaults to the latest release. | false | |
4950
| go-tracer-version | The version of Orchestrion to use. Defaults to the latest release. | false | |
5051
| 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 | |

action.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ inputs:
2929
python-tracer-version:
3030
description: 'The version of Datadog Python tracer to use (optional). Defaults to the latest release.'
3131
required: false
32+
python-coverage-version:
33+
description: 'The version of the Python coverage package to use (optional). Defaults to 7.13.5.'
34+
required: false
3235
ruby-tracer-version:
3336
description: 'The version of datadog-ci Ruby gem to use (optional). Defaults to the latest release.'
3437
required: false
@@ -72,8 +75,8 @@ runs:
7275
echo "$GITHUB_ACTION_PATH" >> $GITHUB_PATH
7376
shell: bash
7477
env:
75-
INSTALLATION_SCRIPT_URL: https://install.datadoghq.com/scripts/install_test_visibility_v12.sh
76-
INSTALLATION_SCRIPT_CHECKSUM: 91b6c7bb2c28ef5604c2a2b233da7d931a9b3b5d20b7872254ebb0e689e62f4a
78+
INSTALLATION_SCRIPT_URL: https://install.datadoghq.com/scripts/install_test_visibility_v13.sh
79+
INSTALLATION_SCRIPT_CHECKSUM: 1271425bc94d25ff771111802f1b010104f3a9245bd491b67f1be561529f6b89
7780
GITHUB_ACTION_PATH: ${{ github.action_path }}
7881

7982
- name: Get Go cache directories
@@ -152,6 +155,7 @@ runs:
152155
DD_SET_TRACER_VERSION_JAVA: ${{ inputs.java-tracer-version }}
153156
DD_SET_TRACER_VERSION_JS: ${{ inputs.js-tracer-version }}
154157
DD_SET_TRACER_VERSION_PYTHON: ${{ inputs.python-tracer-version }}
158+
DD_SET_COVERAGE_VERSION_PYTHON: ${{ inputs.python-coverage-version }}
155159
DD_SET_TRACER_VERSION_RUBY: ${{ inputs.ruby-tracer-version }}
156160
DD_SET_TRACER_VERSION_GO: ${{ inputs.go-tracer-version }}
157161
DD_CIVISIBILITY_GO_MODULE_DIR: ${{ inputs.go-module-dir }}

0 commit comments

Comments
 (0)