Skip to content

Commit

Permalink
Allow use of jdk17
Browse files Browse the repository at this point in the history
  • Loading branch information
shoothzj committed Sep 6, 2023
1 parent 15d36ea commit abf7e0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/readme_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
# Setup latest JDK. We do this to ensure users don't need to use the same version as our
# release process. Release uses JDK 11, the last version that can target 1.6 bytecode.
- name: Setup java
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 15
java-version: 17
- name: Cache NPM Packages
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -65,9 +65,9 @@ jobs:
# Setup latest JDK. We do this to ensure users don't need to use the same version as our
# release process. Release uses JDK 11, the last version that can target 1.6 bytecode.
- name: Setup java
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 15
java-version: 17
# We can't cache Docker without using buildx because GH actions restricts /var/lib/docker
# That's ok because DOCKER_PARENT_IMAGE is always ghcr.io and local anyway.
- name: Cache NPM Packages
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@
<configuration>
<rules>
<requireJavaVersion>
<version>[1.8,16)</version>
<version>[1.8,18)</version>
</requireJavaVersion>
</rules>
</configuration>
Expand Down

0 comments on commit abf7e0f

Please sign in to comment.