Skip to content

Commit 1c06e33

Browse files
Fixed: CD is failing.
* It was because we were using java 11 in CD, and now our project requires java 17 to run.
1 parent 28962b5 commit 1c06e33

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
- name: Checkout code
1313
uses: actions/checkout@v4
1414

15-
- name: Set up JDK 11
15+
- name: Set up JDK 17
1616
uses: actions/setup-java@v4
1717
with:
1818
distribution: adopt
19-
java-version: 11
19+
java-version: 17
2020

2121
- name: Install dependencies
2222
run: bash ./install_deps.sh

0 commit comments

Comments
 (0)