Skip to content

Commit

Permalink
Updates Github workflows to use Java JDK 21
Browse files Browse the repository at this point in the history
  • Loading branch information
Tweener committed Nov 26, 2024
1 parent 3d27057 commit bbd9846
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1

- name: Setup JDK 17
- name: Setup JDK 21
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: '21'
distribution: "zulu"

- name: Setup Gradle cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/checkVersionDependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: '21'
distribution: 'zulu'
cache: gradle

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ jobs:
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1

- name: Setup JDK 17
- name: Setup JDK 21
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: '21'
distribution: "zulu"

- name: Setup Gradle cache
Expand Down

0 comments on commit bbd9846

Please sign in to comment.