This is an automated email from the ASF dual-hosted git repository. mgrigorov pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/master by this push: new 9790cc3 Use JDK, not JRE 9790cc3 is described below commit 9790cc3cb84e4fc4c2a61e02011a957c519c9b45 Author: Martin Tzvetanov Grigorov <mgrigo...@apache.org> AuthorDate: Tue Feb 4 22:21:02 2020 +0200 Use JDK, not JRE --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index e80ab00..7d4cef2 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -14,13 +14,13 @@ jobs: - uses: actions/checkout@v1 - name: Get OpenJDK 11 - run: wget https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.6%2B10/OpenJDK11U-jre_x64_linux_hotspot_11.0.6_10.tar.gz + run: wget https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.6%2B10/OpenJDK11U-jdk_x64_linux_hotspot_11.0.6_10.tar.gz - name: Set up JDK 11 uses: actions/setup-java@v1 with: java-version: 11 - jdkFile: ./OpenJDK11U-jre_x64_linux_hotspot_11.0.6_10.tar.gz + jdkFile: ./OpenJDK11U-jdk_x64_linux_hotspot_11.0.6_10.tar.gz - name: Build with Maven run: mvn package --file pom.xml -Pjs-test