Standardize GitHub Actions authentication to use GITHUB_TOKEN#31
Merged
Standardize GitHub Actions authentication to use GITHUB_TOKEN#31
Conversation
… ACTIONS_TOKEN - Replaced instances of ACTIONS_TOKEN with GITHUB_TOKEN in various workflow files for improved security and consistency. - Updated repository references to use github.repository for better flexibility. - Removed unnecessary secrets declarations for ACTIONS_TOKEN in workflows.
- Updated workflows to use ACTIONS_TOKEN with fallback to GITHUB_TOKEN for better functionality and flexibility. - Added checks and warnings regarding the use of ACTIONS_TOKEN to inform users of its benefits for PR and release automations. - Removed unnecessary repository references in checkout steps for cleaner configuration.
- Enhanced the setup_secrets function in gha-setup.sh to provide clearer instructions on using ACTIONS_TOKEN and ANTHROPIC_API_KEY. - Added details on the required scopes and limitations of ACTIONS_TOKEN when not set. - Streamlined the presentation of optional secrets for better user understanding.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
This PR standardizes authentication across all GitHub Actions workflows by migrating from
ACTIONS_TOKENto the built-inGITHUB_TOKEN, simplifying setup and improving security.Key Changes
GITHUB_TOKENinstead of customACTIONS_TOKENBenefits
Breaking Changes
ACTIONS_TOKENwill need to:ACTIONS_TOKENsecret from repository settingsFiles Modified
.github/workflows/(11 files)bin/bootstrap.shandbin/gha-setup.shTesting Notes for Reviewers
ACTIONS_TOKENBrowser Compatibility
No browser compatibility impact - this is a CI/CD infrastructure change only.
🤖 Generated with Claude Code
Branch Info:
chore/cleanup-gha-authmainCo-Authored-By: Claude noreply@anthropic.com