Skip to content

Commit

Permalink
java compatibility back to 11
Browse files Browse the repository at this point in the history
  • Loading branch information
alexradzin committed Oct 4, 2023
1 parent e3001b3 commit f27ddc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
java-version: '17'
- name: Determine env variables
run: |
if [ "${{ github.event.inputs.environment }}" == 'staging' ]; then
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ java {
}

compileJava {
sourceCompatibility = '17'
targetCompatibility = '17'
sourceCompatibility = '11'
targetCompatibility = '11'
}

configurations {
Expand Down

0 comments on commit f27ddc9

Please sign in to comment.