Skip to content

Commit

Permalink
CI fix: JDK 11 -> 17
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey-Makarov committed Sep 28, 2023
1 parent 4f02735 commit 65bff16
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Java env
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'

- name: Make gradlew executable
run: chmod +x ./gradlew

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/instumented_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
- name: Set up Java env
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
distribution: 'temurin'
java-version: '17'

- name: Instrumented tests
id: instrumented_tests
Expand Down

0 comments on commit 65bff16

Please sign in to comment.