Your team uses GitHub Actions for CI/CD. You want to securely store a database connection string used in a workflow. Where should you store it?
Secrets are encrypted and secure for sensitive values.
Why this answer
Option A is correct because GitHub Secrets are encrypted and designed for sensitive data. Option B is wrong because environment variables are not encrypted. Option C is wrong because hardcoding is insecure.
Option D is wrong because configuration file in repo is not secure.