Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/claude-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
id: claude-review
uses: anthropics/claude-code-action@v1
with:
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
Copy link

Copilot AI Dec 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The authentication method has been updated to use anthropic_api_key in this workflow file. However, the related workflow file claude.yml still uses claude_code_oauth_token on line 37. For consistency and to avoid confusion, consider updating both workflow files to use the same authentication method if they're both intended to work with the current version of the action.

Copilot uses AI. Check for mistakes.
prompt: |
REPO: ${{ github.repository }}
PR NUMBER: ${{ github.event.pull_request.number }}
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'java-library'
id 'maven-publish'
id 'signing'
id 'com.vanniktech.maven.publish' version '0.34.0'
id 'com.vanniktech.maven.publish' version '0.35.0'
id 'net.researchgate.release' version '3.1.0'
}

Expand Down Expand Up @@ -47,7 +47,7 @@ dependencies {
// Other dependencies (moved to test scope for library)
implementation 'org.passay:passay:1.6.6'
implementation 'com.google.guava:guava:33.5.0-jre'
implementation 'org.apache.commons:commons-text:1.14.0'
implementation 'org.apache.commons:commons-text:1.15.0'
compileOnly 'jakarta.validation:jakarta.validation-api:3.1.1'
compileOnly 'org.springframework.retry:spring-retry'

Expand Down