From c8598cd943481435386179fea226790b79e3eca5 Mon Sep 17 00:00:00 2001 From: Geonhyuk Seo Date: Wed, 22 Jan 2025 08:39:29 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20Fix(.github):=20=EA=B9=83?= =?UTF-8?q?=ED=97=88=EB=B8=8C=20=EC=95=A1=EC=85=98=20=EB=A6=AC=EB=AA=A8?= =?UTF-8?q?=ED=8A=B8=20=EC=BA=90=EC=8B=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ISSUES CLOSED: ] --- .github/workflows/ci-cd.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 2f93999d..b9c0dd42 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -19,10 +19,10 @@ jobs: uses: pnpm/action-setup@v4 with: version: 9.12.3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 20 uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: 20 cache: 'pnpm' - name: Install dependencies run: pnpm install @@ -45,8 +45,11 @@ jobs: username: ${{ secrets.NCP_ACCESS_KEY }} password: ${{ secrets.NCP_SECRET_KEY }} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Docker front image build and push - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v6 with: context: . file: ./apps/client/Dockerfile.CI @@ -58,7 +61,7 @@ jobs: cache-to: type=registry,ref=cloud-canvas.kr.ncr.ntruss.com/front:dev,mode=max - name: Docker front-hub image build and push - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v6 with: context: . file: ./apps/hub/Dockerfile.CI @@ -70,7 +73,7 @@ jobs: cache-to: type=registry,ref=cloud-canvas.kr.ncr.ntruss.com/front-hub:dev,mode=max - name: Docker back image build and push - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v6 with: context: . file: ./apps/server/Dockerfile.CI