Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Java 버전은 11에서 17로 변경한다. (#138) #139

Merged
merged 1 commit into from
Dec 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ jobs:
steps:
## workflow 실행 전 기본적으로 checkout 필요
## 최신 버전은 v3
- uses: actions/checkout@v3
- name: Install Ubuntu dependencies
- uses: actions/checkout@v4
run: sudo apt-get update

- name: Set up JDK 11
uses: actions/setup-java@v3
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin' # jdk를 제공하는 vender사 이름 ex. zulu, adopt, microsoft
distribution: 'temurin' # Eclipse Temurin
java-version: '17'

## Create secret yml files before build
- name: create application-common, local, prod, test.yml
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/cd-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@ jobs:

steps:
# workflow 실행 전 기본적으로 checkout 필요
# 최신 버전은 v3
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up JDK 11
uses: actions/setup-java@v3
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin' # jdk를 제공하는 vender사 이름 ex. zulu, adopt, microsoft
distribution: 'temurin' # Eclipse Temurin
java-version: '17'

## Create secret yml files before build
- name: create application-common, local, prod, test.yml
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
steps:
# workflow 실행 전 기본적으로 checkout 필요
# 최신 버전은 v3
- uses: actions/checkout@v3
- name: Install Ubuntu dependencies
- uses: actions/checkout@v4
run: sudo apt-get update

- name: Set up JDK 11
uses: actions/setup-java@v3
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin' # jdk를 제공하는 vender사 이름 ex. zulu, adopt, microsoft
distribution: 'temurin' # Eclipse Temurin
java-version: '17'

## Create secret yml files before build
- name: create application-common, local, prod, test.yml
Expand Down