Skip to content

Commit

Permalink
fix: java 버전 18으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
belljun3395 committed Dec 13, 2024
1 parent 304e243 commit 34a3ce9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up JDK 17
- name: Set up JDK 18
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: '18'
distribution: 'temurin'

- name: Jooq Code Generation
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ecs-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up JDK 17
- name: Set up JDK 18
uses: actions/setup-java@v3
with:
java-version: '18'
distribution: 'temurin'
java-version: '17'
cache: gradle

- name: Configure AWS credentials
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ecs-dev-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up JDK 17
- name: Set up JDK 18
uses: actions/setup-java@v3
with:
java-version: '18'
distribution: 'temurin'
java-version: '17'
cache: gradle

- name: Configure AWS credentials
Expand Down

0 comments on commit 34a3ce9

Please sign in to comment.