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