We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39897ec commit e6ff430Copy full SHA for e6ff430
.github/workflows/workflow.yml
@@ -19,11 +19,11 @@ jobs:
19
# 1. 코드 체크아웃
20
- uses: actions/checkout@v4
21
22
- # 2. JDK 21 설정
23
- - name: Set up JDK 21
+ # 2. JDK 17 설정
+ - name: Set up JDK 17
24
uses: actions/setup-java@v4
25
with:
26
- java-version: '21'
+ java-version: '17'
27
distribution: 'temurin'
28
29
# 3. Gradle 캐시
Dockerfile
@@ -1,5 +1,5 @@
1
-# Java 21용 OpenJDK 이미지 사용
2
-FROM eclipse-temurin:21-jdk
+# Java 17용 OpenJDK 이미지 사용
+FROM eclipse-temurin:17-jdk
3
4
WORKDIR /app
5
0 commit comments