Skip to content

Commit

Permalink
Use Java 21 in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Jun 7, 2024
1 parent 01c756f commit 62e83fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ 11, 17 ]
java: [ 21 ]
os: [ macos-latest, ubuntu-latest, windows-latest ]
withAuth: [ testWithoutAuth, testWithAuth ]
name: Java ${{ matrix.java }} @ ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '11'
java-version: '21'
distribution: 'adopt'
- name: Publish package
run: ./gradlew publish
Expand Down

0 comments on commit 62e83fa

Please sign in to comment.