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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | |
Expand Down
8 changes: 6 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down
Loading