Skip to content

Commit

Permalink
Workflow: Java Version Change
Browse files Browse the repository at this point in the history
  • Loading branch information
AkosPaha01 committed Dec 20, 2022
1 parent bcf7ded commit e4a9661
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildCi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/setup-java@v3.9.0
with:
distribution: temurin
java-version: 15
java-version: 17

- name: Cache Gradle dependencies
uses: actions/cache@v3.0.11
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildPro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/setup-java@v3.9.0
with:
distribution: temurin
java-version: 15
java-version: 17

- name: Cache Gradle dependencies
uses: actions/cache@v3.0.11
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/setup-java@v3.9.0
with:
distribution: temurin
java-version: 15
java-version: 17

- name: Cache Gradle dependencies
uses: actions/cache@v3.0.11
Expand Down
2 changes: 1 addition & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_15
targetCompatibility = JavaVersion.VERSION_15
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_15.toString()
jvmTarget = JavaVersion.VERSION_17.toString()
}

packagingOptions {
Expand Down

0 comments on commit e4a9661

Please sign in to comment.