Skip to content

Commit

Permalink
chore(actions): Run with Java 14 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
skaldarnar committed May 6, 2020
1 parent 81ca191 commit 655f407
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/asset-upload.yml
Expand Up @@ -16,11 +16,11 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK 14
uses: actions/setup-java@v1
with:
java-version: 11
java-package: jdk+fx
java-version: 14
java-package: jdk
- name: Bundle distribution for ${{ matrix.platform }}
run: ./gradlew -Prelease.useLastTag=true ${{ matrix.platform }}DistZip
- name: Upload bundle for ${{ matrix.platform }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push-validation.yml
Expand Up @@ -9,10 +9,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK 14
uses: actions/setup-java@v1
with:
java-version: 11
java-package: jdk+fx
java-version: 14
java-package: jdk
- name: Build and test with Gradle
run: ./gradlew check

0 comments on commit 655f407

Please sign in to comment.