Plaintext Credentials Showing Up In GitHub Actions #1026
Unanswered
cameron-zwane
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using GitHub Actions with AWS, Terraform and
aws sts get-caller-identity
.A step in my workflow job is there to validate my AWS role. It looks like this:
The issue I am having is that instead of displaying the credentials starred out like my other pipelines like the example below, it actually populates the *** with real credentials (like my actual Arn info), leaving my pipeline full of actual secrets for some reason.
I have figured out that the reason my one pipeline is hiding the info and the other is not is because of the VERSION I am using here:
vs. the one that exposes the secrets:
How do I hide those credentials without having to use an old version? I'm very new to most of the tools, and have no clue if this is me using the tool wrong or what.
Beta Was this translation helpful? Give feedback.
All reactions