Skip to content

Commit 0c4cefd

Browse files
authored
Update actions to use new DD API key (#20181)
* rename DD_API_KEY * test * revert test
1 parent d7f5dfd commit 0c4cefd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/submit-traces.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
ports:
1919
- "8126:8126"
2020
env:
21-
DD_API_KEY: "${{ secrets.DD_API_KEY }}"
21+
DD_API_KEY: "${{ secrets.DD_API_KEY_2 }}"
2222
DD_HOSTNAME: "none"
2323
DD_INSIDE_CI: "true"
2424
DD_LOG_LEVEL: "warn"

.github/workflows/test-fips-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,14 @@ jobs:
109109
- name: Run E2E tests with FIPS disabled
110110
env:
111111
DDEV_E2E_AGENT: "${{ inputs.agent-image || 'datadog/agent-dev:master-py3' }}"
112-
DD_API_KEY: "${{ secrets.DD_API_KEY }}"
112+
DD_API_KEY: "${{ secrets.DD_API_KEY_2 }}"
113113
run: |
114114
ddev env test --base --new-env --junit ${{ inputs.target || 'tls' }} -- all -m "fips_off"
115115
116116
- name: Run E2E tests with FIPS enabled
117117
env:
118118
DDEV_E2E_AGENT: "${{ inputs.agent-image-fips || 'datadog/agent-dev:master-fips' }}"
119-
DD_API_KEY: "${{ secrets.DD_API_KEY }}"
119+
DD_API_KEY: "${{ secrets.DD_API_KEY_2 }}"
120120
run: |
121121
ddev env test --base --new-env --junit ${{ inputs.target || 'tls' }} -- all -k "fips_on"
122122

.github/workflows/test-target.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ jobs:
259259
- name: Run E2E tests with latest base package
260260
if: inputs.standard && inputs.repo == 'core' && !inputs.minimum-base-package
261261
env:
262-
DD_API_KEY: "${{ secrets.DD_API_KEY }}"
262+
DD_API_KEY: "${{ secrets.DD_API_KEY_2 }}"
263263
run: |
264264
# '-- all' is passed for e2e tests if pytest args are provided
265265
# This is done to avoid ddev from interpreting the arguments as environments
@@ -297,7 +297,7 @@ jobs:
297297
- name: Run E2E tests
298298
if: inputs.standard && inputs.repo != 'core'
299299
env:
300-
DD_API_KEY: "${{ secrets.DD_API_KEY }}"
300+
DD_API_KEY: "${{ secrets.DD_API_KEY_2 }}"
301301
run: |
302302
# '-- all' is passed for e2e tests if pytest args are provided
303303
# This is done to avoid ddev from interpreting the arguments as environments
@@ -343,7 +343,7 @@ jobs:
343343
- name: Run E2E tests for the latest version
344344
if: inputs.latest
345345
env:
346-
DD_API_KEY: "${{ secrets.DD_API_KEY }}"
346+
DD_API_KEY: "${{ secrets.DD_API_KEY_2 }}"
347347
DDEV_TEST_ENABLE_TRACING: "${{ inputs.repo == 'core' && '1' || '0' }}"
348348
run: |
349349
# '-- all' is passed for e2e tests if pytest args are provided

0 commit comments

Comments
 (0)