Skip to content

Commit ed8de3b

Browse files
committed
Update Claude Code action to use GitHub token for authentication, enhancing security and consistency in the workflow.
1 parent 34b677f commit ed8de3b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/claude.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
uses: docker/login-action@v3
3838
with:
3939
registry: ghcr.io
40-
username: MervinPraison
41-
password: ${{ secrets.GH_TOKEN }}
40+
username: ${{ github.actor }}
41+
password: ${{ secrets.GITHUB_TOKEN }}
4242

4343
- name: Run Claude Code
4444
id: claude
4545
uses: ./.github/actions/claude-code-action
4646
with:
4747
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
48-
github_token: ${{ secrets.GH_TOKEN }}
48+
github_token: ${{ secrets.GITHUB_TOKEN }}
4949

0 commit comments

Comments
 (0)