From 83c85a46e2d1f454b3ccbd86604a6510b460e537 Mon Sep 17 00:00:00 2001 From: Moojun Date: Fri, 29 Dec 2023 15:26:04 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20Java=20=EB=B2=84=EC=A0=84=EC=9D=80=2011?= =?UTF-8?q?=EC=97=90=EC=84=9C=2017=EB=A1=9C=20=EB=B3=80=EA=B2=BD=ED=95=9C?= =?UTF-8?q?=EB=8B=A4.=20(#138)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-on-pr.yml | 10 +++++----- .github/workflows/cd-main.yml | 11 +++++------ .github/workflows/ci-develop.yml | 10 +++++----- 3 files changed, 15 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build-on-pr.yml b/.github/workflows/build-on-pr.yml index 21d6e58..41498e9 100644 --- a/.github/workflows/build-on-pr.yml +++ b/.github/workflows/build-on-pr.yml @@ -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 diff --git a/.github/workflows/cd-main.yml b/.github/workflows/cd-main.yml index b4b9d06..6ae5f03 100644 --- a/.github/workflows/cd-main.yml +++ b/.github/workflows/cd-main.yml @@ -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 diff --git a/.github/workflows/ci-develop.yml b/.github/workflows/ci-develop.yml index 8177cbd..3b7ca07 100644 --- a/.github/workflows/ci-develop.yml +++ b/.github/workflows/ci-develop.yml @@ -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