Skip to content

Commit

Permalink
Fix GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
AstrorEnales committed Jun 25, 2024
1 parent 2e8ad5d commit fca69b1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ jobs:
prerelease: false
- uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: '11'
java-package: jdk+fx
- name: print Java version
run: java -version
- name: Build with Maven
env:
USENAME: ${{ github.actor }}
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: '11'
java-package: jdk+fx
- name: print Java version
run: java -version
- name: Build with Maven
env:
USENAME: ${{ github.actor }}
Expand Down

0 comments on commit fca69b1

Please sign in to comment.