Skip to content

Commit 143bf3b

Browse files
committed
Fix: Ensure SECURE_API_TOKEN is injected properly
1 parent c22d653 commit 143bf3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
SECURE_API_TOKEN: ${{ secrets.SECURE_API_TOKEN }}
2929
run: |
3030
echo "🔍 Token Length: ${#SECURE_API_TOKEN}"
31-
echo "🔍 Token Head: ${SECURE_API_TOKEN::5}"
31+
echo "🔍 Token Head: ${SECURE_API_TOKEN:0:5}"
3232
if [ -z "$SECURE_API_TOKEN" ]; then
3333
echo "❌ SECURE_API_TOKEN is NOT set!"
3434
exit 1

0 commit comments

Comments
 (0)