Skip to content

Commit b87c4dd

Browse files
authored
ci: store fake DD_API_KEY as a secret (#11690)
1 parent 710ed97 commit b87c4dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/system-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
# system-tests requires an API_KEY, but it does not have to be a valid key, as long as we don't run a scenario
5555
# that make assertion on backend data. Using a fake key allow to run system tests on PR originating from forks.
5656
# If ever it's needed, a valid key exists in the repo, using ${{ secrets.DD_API_KEY }}
57-
DD_API_KEY: 1234567890abcdef1234567890abcdef
57+
DD_API_KEY: ${{ secrets.FAKE_DD_API_KEY }}
5858
CMAKE_BUILD_PARALLEL_LEVEL: 12
5959
SYSTEM_TESTS_AWS_ACCESS_KEY_ID: ${{ secrets.IDM_AWS_ACCESS_KEY_ID }}
6060
SYSTEM_TESTS_AWS_SECRET_ACCESS_KEY: ${{ secrets.IDM_AWS_SECRET_ACCESS_KEY }}
@@ -106,7 +106,7 @@ jobs:
106106
# system-tests requires an API_KEY, but it does not have to be a valid key, as long as we don't run a scenario
107107
# that make assertion on backend data. Using a fake key allow to run system tests on PR originating from forks.
108108
# If ever it's needed, a valid key exists in the repo, using ${{ secrets.DD_API_KEY }}
109-
DD_API_KEY: 1234567890abcdef1234567890abcdef
109+
DD_API_KEY: ${{ secrets.FAKE_DD_API_KEY }}
110110
CMAKE_BUILD_PARALLEL_LEVEL: 12
111111
SYSTEM_TESTS_AWS_ACCESS_KEY_ID: ${{ secrets.IDM_AWS_ACCESS_KEY_ID }}
112112
SYSTEM_TESTS_AWS_SECRET_ACCESS_KEY: ${{ secrets.IDM_AWS_SECRET_ACCESS_KEY }}

0 commit comments

Comments
 (0)