Skip to content

Commit 038443f

Browse files
committed
fix issue
1 parent 8d4d177 commit 038443f

2 files changed

Lines changed: 20 additions & 7 deletions

File tree

.github/workflows/dagger-fraud-sim.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,13 @@ jobs:
1616
version: "0.19.8"
1717
install-only: true
1818
- name: Run Dagger Pipeline (Cloud)
19-
env:
20-
DAGGER_CLOUD_TOKEN: ${{ secrets.DAGGER_CLOUD_TOKEN }}
21-
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
22-
GROQ_API_KEY: ${{ secrets.GROQ_API_KEY }}
2319
run: |
20+
echo "Exporting secrets..."
21+
export DAGGER_CLOUD_TOKEN="${{ secrets.DAGGER_CLOUD_TOKEN }}"
22+
export GEMINI_API_KEY="${{ secrets.GEMINI_API_KEY }}"
23+
export GROQ_API_KEY="${{ secrets.GROQ_API_KEY }}"
24+
2425
dagger run --cloud authentication-service/auth-service:fraud-v1 \
25-
call run-fraud-sim --token=env://DAGGER_CLOUD_TOKEN
26+
call run-fraud-sim \
27+
--gemini-api-key secret:GEMINI_API_KEY \
28+
--groq-api-key secret:GROQ_API_KEY

.secrets.baseline

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@
9090
{
9191
"path": "detect_secrets.filters.allowlist.is_line_allowlisted"
9292
},
93-
{ "path": "detect_secrets.filters.common.is_ignored_due_to_verification_policies",
93+
{
94+
"path": "detect_secrets.filters.common.is_ignored_due_to_verification_policies",
9495
"min_level": 2
9596
},
9697
{
@@ -122,6 +123,15 @@
122123
}
123124
],
124125
"results": {
126+
".github/workflows/dagger-fraud-sim.yml": [
127+
{
128+
"type": "Secret Keyword",
129+
"filename": ".github/workflows/dagger-fraud-sim.yml",
130+
"hashed_secret": "86ac1a7088a5e5b345ffbff04ea68577f644efff",
131+
"is_verified": false,
132+
"line_number": 19
133+
}
134+
],
125135
"COMPLETE_TESTING_GUIDE.md": [
126136
{
127137
"type": "Secret Keyword",
@@ -352,5 +362,5 @@
352362
}
353363
]
354364
},
355-
"generated_at": "2026-01-02T22:20:28Z"
365+
"generated_at": "2026-01-03T05:38:20Z"
356366
}

0 commit comments

Comments
 (0)