Skip to content

Commit

Permalink
Fixed: CD is failing.
Browse files Browse the repository at this point in the history
* It was because we were using java 11 in CD, and now our project requires java 17 to run.
  • Loading branch information
MohitMaliDeveloper committed Jun 6, 2024
1 parent 28962b5 commit 1c06e33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 11
java-version: 17

- name: Install dependencies
run: bash ./install_deps.sh
Expand Down

0 comments on commit 1c06e33

Please sign in to comment.