Skip to content

Commit

Permalink
chore: setjdk 17 for sever
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Jun 4, 2023
1 parent d152022 commit 11c8d14
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '11'
distribution: 'temurin'
java-version: '17'
cache: 'gradle'

- name: Setup Gradle
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '11'
distribution: 'temurin'
java-version: '17'
cache: 'gradle'

- name: Setup Gradle
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ allprojects {
group = "org.archguard.comate"
version = "0.1.2"

java.sourceCompatibility = JavaVersion.VERSION_11
java.targetCompatibility = JavaVersion.VERSION_11
// java.sourceCompatibility = JavaVersion.VERSION_11
// java.targetCompatibility = JavaVersion.VERSION_11

tasks.withType<Test> {
useJUnitPlatform()
Expand Down

0 comments on commit 11c8d14

Please sign in to comment.