Skip to content

Commit

Permalink
add new jdk
Browse files Browse the repository at this point in the history
  • Loading branch information
bia-tech committed Jul 10, 2024
1 parent d30e4a5 commit 4919eee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:
strategy:
fail-fast: false
matrix:
java_version: ['17', '20']
java_version: ['17', '20', '21']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java_version }}
distribution: 'adopt'
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew check --stacktrace
- name: Archive test results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java_version }}
distribution: 'adopt'
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew check --stacktrace
- name: Publish plugin
Expand Down

0 comments on commit 4919eee

Please sign in to comment.