Skip to content

Commit

Permalink
Update github workflows to use java sdk 21
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilly7CE committed Sep 4, 2024
1 parent 7e38532 commit 2ec2a1c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mainbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: setup jdk 17
- name: setup jdk 21
uses: actions/setup-java@v3
with:
distribution: "adopt"
java-version: 17
java-version: 21
- name: Cache Gradle packages
uses: actions/cache@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: setup jdk 17
- name: setup jdk 21
uses: actions/setup-java@v3
with:
distribution: "adopt"
java-version: 17
java-version: 21
- name: Cache Gradle packages
uses: actions/cache@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
distribution: "adopt"
java-version: 17
java-version: 21
cache: "gradle"
- name: Grant execute permission to gradlew
run: chmod +x gradlew
Expand Down

0 comments on commit 2ec2a1c

Please sign in to comment.