Skip to content

Commit

Permalink
Update JDK version to 22 in GitHub Actions workflow
Browse files Browse the repository at this point in the history
Changed the setup from JDK 21 to 22 in the publish.yml workflow file. Added caching for Gradle to improve build efficiency.
  • Loading branch information
ThePandaOliver committed Aug 23, 2024
1 parent 370c8f2 commit ac77915
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ jobs:
packages: write
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
- name: Set up JDK 22
uses: actions/setup-java@v4
with:
java-version: '21'
java-version: '22'
distribution: 'temurin'
cache: 'gradle'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
Expand Down

0 comments on commit ac77915

Please sign in to comment.