Skip to content

Commit

Permalink
Try using java 17 instead
Browse files Browse the repository at this point in the history
  • Loading branch information
Dannyj1 committed Feb 23, 2024
1 parent 9a7f536 commit 5b597be
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin' # Alternative distribution options are available
java-version: 17
distribution: 'zulu' # Alternative distribution options are available
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Mistral-java-client is built against version 0.0.1 of the [Mistral AI API](https
- "Create Embeddings" to be implemented later

# Requirements
- Java 11 or higher
- Java 17 or higher
- A Mistral AI API Key (see the [Mistral documentation](https://docs.mistral.ai/#api-access) for more details on API access)

# Installation
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
}

java {
sourceCompatibility = '11'
sourceCompatibility = '17'
}

publishing {
Expand Down

0 comments on commit 5b597be

Please sign in to comment.