GitHub Actions Certification — Question 11

As a developer, you need to use GitHub Actions to deploy a microservice that requires runtime access to a secure token. This token is used by a variety of other microservices managed by different teams in different repos. To minimize management overhead and ensure the token is secure, which mechanisms should you use to store and access the token? (Choose two.)

Answer options

Correct answer: C, E

Explanation

The correct answers are C and E because they both utilize secure methods for storing and accessing the token without increasing management overhead. Option C uses an external secret management system, which is a best practice for sensitive information, while option E leverages organizational-level encrypted secrets for broader accessibility across multiple repositories. The other options fail to provide sufficient security or manageability for the token.