diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index 1d74e19..be5201d 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -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 }} prompt: | REPO: ${{ github.repository }} PR NUMBER: ${{ github.event.pull_request.number }} diff --git a/build.gradle b/build.gradle index eedd9a8..35d75ca 100644 --- a/build.gradle +++ b/build.gradle @@ -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' } @@ -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'