-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: provide input to optionally mask output docker password #491
Merged
mergify
merged 1 commit into
aws-actions:main
from
therealdwright:correctly-mask-secrets
Aug 8, 2023
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -4,30 +4,37 @@ branding: | |||||||||
icon: 'cloud' | ||||||||||
color: 'orange' | ||||||||||
inputs: | ||||||||||
registries: | ||||||||||
http-proxy: | ||||||||||
description: >- | ||||||||||
A comma-delimited list of AWS account IDs that are associated with the ECR Private registries. | ||||||||||
If you do not specify a registry, the default ECR Private registry is assumed. | ||||||||||
If 'public' is given as input to 'registry-type', this input is ignored. | ||||||||||
Proxy to use for the AWS SDK agent. | ||||||||||
required: false | ||||||||||
skip-logout: | ||||||||||
mask-password: | ||||||||||
description: >- | ||||||||||
Whether to skip explicit logout of the registries during post-job cleanup. | ||||||||||
Exists for backward compatibility on self-hosted runners. | ||||||||||
Not recommended. | ||||||||||
Mask the docker password to prevent it being printed to logs to std-out. This will prevent the | ||||||||||
password GitHub output from being shared between separate jobs. | ||||||||||
Comment on lines
+13
to
+14
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
Options: ['true', 'false'] | ||||||||||
required: false | ||||||||||
default: 'false' | ||||||||||
registries: | ||||||||||
description: >- | ||||||||||
A comma-delimited list of AWS account IDs that are associated with the ECR Private registries. | ||||||||||
If you do not specify a registry, the default ECR Private registry is assumed. | ||||||||||
If 'public' is given as input to 'registry-type', this input is ignored. | ||||||||||
required: false | ||||||||||
registry-type: | ||||||||||
description: >- | ||||||||||
Which ECR registry type to log into. | ||||||||||
Options: [private, public] | ||||||||||
required: false | ||||||||||
default: private | ||||||||||
http-proxy: | ||||||||||
skip-logout: | ||||||||||
description: >- | ||||||||||
Proxy to use for the AWS SDK agent. | ||||||||||
Whether to skip explicit logout of the registries during post-job cleanup. | ||||||||||
Exists for backward compatibility on self-hosted runners. | ||||||||||
Not recommended. | ||||||||||
Options: ['true', 'false'] | ||||||||||
required: false | ||||||||||
default: 'false' | ||||||||||
outputs: | ||||||||||
registry: | ||||||||||
description: >- | ||||||||||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.