Skip to content

Commit

Permalink
build : CI_CHECK java version 17 -> 11 migration
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackBean99 committed Jul 23, 2023
1 parent 0641767 commit 2e3611b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/BuildApiServer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 17 ]
java-version: [ 11 ]
outputs:
version: ${{ steps.get_version.outputs.BRANCH_NAME }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/CI_Check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 17 ]
java-version: [ 11 ]
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: SetUp JDK 17
- name: SetUp JDK 11
uses: actions/setup-java@v2
with:
java-version: "17"
java-version: "11"
distribution: 'adopt'


Expand Down

0 comments on commit 2e3611b

Please sign in to comment.