Skip to content

Commit

Permalink
Set up Java 8. 16, 17 AND 21 in GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Deftu committed Jun 18, 2024
1 parent 9df4410 commit 5d743b2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,12 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 21
distribution: 'temurin'
java-version: |
8
16
17
21
- name: Grant execute permissions for gradlew
run: chmod +x gradlew
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,12 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 21
distribution: 'temurin'
java-version: |
8
16
17
21
- name: Grant execute permission for gradlew
run: chmod +x gradlew
Expand Down

0 comments on commit 5d743b2

Please sign in to comment.