Skip to content

Commit

Permalink
feat: Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Apr 25, 2023
1 parent 6e650b9 commit 7839135
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 11
distribution: 'temurin'
java-version: 17

- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ repositories {
}
}

sourceCompatibility = 11
targetCompatibility = 11
sourceCompatibility = 17
targetCompatibility = 17

group "io.kestra.plugin"
description 'Google Workplace plugin for Kestra'
description 'Harness Google Workspace APIs within Kestra data orchestration.'

tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
Expand Down

0 comments on commit 7839135

Please sign in to comment.