From e1c8966b9cd8bda2a948637f4c92a1dad934a3ea Mon Sep 17 00:00:00 2001 From: Rafal Pomocnik Date: Fri, 26 Apr 2024 16:25:47 +0200 Subject: [PATCH 1/3] Bump to node 20 --- action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index a58346a..10f46c9 100644 --- a/action.yaml +++ b/action.yaml @@ -23,7 +23,7 @@ inputs: node-version: required: true description: The node version used to install datadog-ci - default: "16" + default: "20" tags: required: false description: Datadog tags to associate with the uploaded test results. @@ -41,7 +41,7 @@ runs: using: "composite" steps: - name: Install node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ inputs.node-version }} - name: Get Datadog CLI From 54f41c60e5cabbd9e1c342f47906cffd5032e430 Mon Sep 17 00:00:00 2001 From: Rafal Pomocnik Date: Fri, 26 Apr 2024 16:27:44 +0200 Subject: [PATCH 2/3] Bump to node 20 --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index ca4f544..648b60d 100644 --- a/README.md +++ b/README.md @@ -27,15 +27,15 @@ jobs: The action has the following options: -| Name | Description | Required | Default | -| ---- | ----------- | -------- | ------- | -| `api-key` | Datadog API key to use to upload the junit files. | True | | -| `service` | Service name to use with the uploaded test results. | True | | +| Name | Description | Required | Default | +| ---- | ----------- | -------- |-----------------| +| `api-key` | Datadog API key to use to upload the junit files. | True | | +| `service` | Service name to use with the uploaded test results. | True | | | `datadog-site` | The Datadog site to upload the files to. | True | `datadoghq.com` | -| `files` | Path to file or folder containing XML files to upload | True | `.` | -| `concurrency` | Controls the maximum number of concurrent file uploads | True | `20` | -| `node-version` | The node version to use to install the datadog-ci. It must be `>=10.24.1` | True | `16` | -| `tags` | Optional extra tags to add to the tests | False | | -| `env` | Optional environment to add to the tests | False | | -| `logs` | When set to "true" enables forwarding content from the XML reports as Logs. The content inside ``, ``, and `` is collected as logs. Logs from elements inside a `` are automatically connected to the test. | False | | -| `extra-args` | Extra args to be passed to the datadog-ci junit upload command.| False | | +| `files` | Path to file or folder containing XML files to upload | True | `.` | +| `concurrency` | Controls the maximum number of concurrent file uploads | True | `20` | +| `node-version` | The node version to use to install the datadog-ci. It must be `>=10.24.1` | True | `20` | +| `tags` | Optional extra tags to add to the tests | False | | +| `env` | Optional environment to add to the tests | False | | +| `logs` | When set to "true" enables forwarding content from the XML reports as Logs. The content inside ``, ``, and `` is collected as logs. Logs from elements inside a `` are automatically connected to the test. | False | | +| `extra-args` | Extra args to be passed to the datadog-ci junit upload command.| False | | From 5d20e658fe08428dcea4ff7cae4d7a7e875ee486 Mon Sep 17 00:00:00 2001 From: Rafal Pomocnik Date: Fri, 26 Apr 2024 16:30:14 +0200 Subject: [PATCH 3/3] Bump to node 20 --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 648b60d..8a1efaf 100644 --- a/README.md +++ b/README.md @@ -27,15 +27,15 @@ jobs: The action has the following options: -| Name | Description | Required | Default | -| ---- | ----------- | -------- |-----------------| -| `api-key` | Datadog API key to use to upload the junit files. | True | | -| `service` | Service name to use with the uploaded test results. | True | | +| Name | Description | Required | Default | +| ---- | ----------- | -------- | ------- | +| `api-key` | Datadog API key to use to upload the junit files. | True | | +| `service` | Service name to use with the uploaded test results. | True | | | `datadog-site` | The Datadog site to upload the files to. | True | `datadoghq.com` | -| `files` | Path to file or folder containing XML files to upload | True | `.` | -| `concurrency` | Controls the maximum number of concurrent file uploads | True | `20` | -| `node-version` | The node version to use to install the datadog-ci. It must be `>=10.24.1` | True | `20` | -| `tags` | Optional extra tags to add to the tests | False | | -| `env` | Optional environment to add to the tests | False | | -| `logs` | When set to "true" enables forwarding content from the XML reports as Logs. The content inside ``, ``, and `` is collected as logs. Logs from elements inside a `` are automatically connected to the test. | False | | -| `extra-args` | Extra args to be passed to the datadog-ci junit upload command.| False | | +| `files` | Path to file or folder containing XML files to upload | True | `.` | +| `concurrency` | Controls the maximum number of concurrent file uploads | True | `20` | +| `node-version` | The node version to use to install the datadog-ci. It must be `>=10.24.1` | True | `20` | +| `tags` | Optional extra tags to add to the tests | False | | +| `env` | Optional environment to add to the tests | False | | +| `logs` | When set to "true" enables forwarding content from the XML reports as Logs. The content inside ``, ``, and `` is collected as logs. Logs from elements inside a `` are automatically connected to the test. | False | | +| `extra-args` | Extra args to be passed to the datadog-ci junit upload command.| False | |