Skip to content

Commit

Permalink
SM-1117: Rename service accounts to machine accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
coltonhurst committed Apr 11, 2024
1 parent 00eef43 commit 8d672d5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ To use the action, add a step to your GitHub workflow using the following syntax

- `access_token`

The service account access token for retrieving secrets.
The machine account access token for retrieving secrets.

Use GitHub's [encrypted secrets](https://docs.github.com/en/actions/security-guides/encrypted-secrets) to store and retrieve service account access tokens securely.
Use GitHub's [encrypted secrets](https://docs.github.com/en/actions/security-guides/encrypted-secrets) to store and retrieve machine account access tokens securely.

- `secrets`

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ branding:
color: "blue"
inputs:
access_token:
description: "The service account access token for retrieving secrets"
description: "The machine account access token for retrieving secrets"
required: true
secrets:
description: "One or more secret Ids to retrieve and the corresponding GitHub environment variable name to set"
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export async function run(): Promise<void> {
});
} else {
let errorMessage =
"The secrets provided could not be found. Please check the service account has access to the secret UUIDs provided.";
"The secrets provided could not be found. Please check the machine account has access to the secret UUIDs provided.";
if (secretResponse.errorMessage) {
errorMessage = errorMessage + `\n\n` + secretResponse.errorMessage;
}
Expand Down

0 comments on commit 8d672d5

Please sign in to comment.