Skip to content

Commit

Permalink
fix java version
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusMcCloud committed Jul 3, 2024
1 parent 3086c94 commit d775e21
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
java-version: '17'
- name: Build jar
run: ./gradlew test assemble
- name: Test Report
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish-pages-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Build Dokka HTML
run: ./gradlew dokkaHtml
- name: Setup Pages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
java-version: '17'
- name: Publish to Sonatype
run: ./gradlew clean android-attestation:publishToSonatype closeSonatypeStagingRepository
env:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ out the attestation record.
#### 1.5.2
- support HTTP proxy for fetching Android Revocation list
- Dependency Updates:
- Java 17
- Kotlin 2.0.0
- bouncycastle: 1.78.1!!
- coroutines: 1.8.1
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
jdk.version=11
jdk.version=17

0 comments on commit d775e21

Please sign in to comment.