Description
In .github/workflows/ci.yml:50, STELLAR_PLATFORM_SECRET is committed in plaintext. Even for testnet, secrets should use GitHub Actions encrypted secrets to follow security best practices.
Impact
Testnet private key exposed in repository history. If reused on mainnet, funds could be compromised.
File
.github/workflows/ci.yml:50
Suggested Fix
Use GitHub Actions encrypted secrets: ${{ secrets.STELLAR_PLATFORM_SECRET }}
Description
In
.github/workflows/ci.yml:50,STELLAR_PLATFORM_SECRETis committed in plaintext. Even for testnet, secrets should use GitHub Actions encrypted secrets to follow security best practices.Impact
Testnet private key exposed in repository history. If reused on mainnet, funds could be compromised.
File
.github/workflows/ci.yml:50Suggested Fix
Use GitHub Actions encrypted secrets:
${{ secrets.STELLAR_PLATFORM_SECRET }}