Skip to content

Commit

Permalink
change to use java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
li-advait committed Nov 8, 2024
1 parent 9fa2de4 commit 60421a8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/merge-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,19 @@ jobs:
name: Build project
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }}
strategy:
matrix:
java-version: [ 17 ]
steps:
- name: Set up Java
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java-version }}
- name: Show java
run: |
echo $JAVA_HOME
echo $PATH
java -version
- name: Checkout Repo
uses: actions/checkout@v2

Expand Down

0 comments on commit 60421a8

Please sign in to comment.