-
Notifications
You must be signed in to change notification settings - Fork 0
ci(claude): surface full SDK output to diagnose @claude auth failure #983
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
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
54037cb
ci(claude): surface full SDK output to diagnose @claude auth failure
claude 8e82a0f
Merge branch 'main' into claude/github-comments-not-solving-2agr0c
BigSimmo 7026037
Merge branch 'main' into claude/github-comments-not-solving-2agr0c
BigSimmo 34fd587
Merge branch 'main' into claude/github-comments-not-solving-2agr0c
BigSimmo 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 hidden or 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.
🔒 Security & Privacy | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: BigSimmo/Database
Length of output: 5741
🌐 Web query:
Anthropic claude-code-action show_full_output security documentation💡 Result:
The show_full_output option in the Claude Code GitHub Action is a configuration setting that controls the verbosity of log outputs, carrying significant security implications [1][2]. Security Overview The show_full_output option is disabled by default (show_full_output: false) to prevent the accidental exposure of sensitive information [1][3][2]. When enabled (show_full_output: true), the action outputs all Claude Code messages, which may include: - Full outputs from tool executions (e.g., system commands, environment variable dumps, file reads) [1][3]. - API responses containing tokens or credentials [1][3]. - Sensitive file contents [1][3]. - System information potentially useful to an attacker [1][3]. Important Considerations - Public Visibility: In public GitHub repositories, these logs are publicly visible [1][3]. Even when set to false, sensitive data might still be present in raw execution logs unless properly managed [4]. - Debug Mode: Full output is automatically enabled if GitHub Actions debug mode is active (e.g., when the ACTIONS_STEP_DEBUG secret is set to true) [1][3][2]. - Risk Mitigation: Anthropic recommends using the default (false) setting and relying on sanitized output, which provides essential information like errors and completion status without exposing sensitive data [1][3]. - Best Practices: Users should only enable full output in private, controlled environments after verifying no secrets will be exposed [1][3]. Always use GitHub Actions secrets for sensitive values like API keys instead of hardcoding them [2][5]. Documentation Reference Detailed security documentation for this action can be found in the official repository under docs/security.md [1][2]. Users are also encouraged to review Anthropic's general security documentation for Claude Code, which covers permissions, credential storage, and sandboxing [5][6].
Citations:
Keep
show_full_outputdisabled by default.show_full_outputcan dump tool output, file contents, API responses, and credentials into job logs. This runs on PR interactions with write access, so leave it off unless you’re debugging privately, then remove it.🤖 Prompt for AI Agents