Skip to content

Commit ee12bfb

Browse files
authored
Merge pull request #6 from boostcampwm-2024/v2/project-setting
🐞 Fix(.github): 깃허브 액션 리모트 캐시 수정
2 parents 0baefd6 + c8598cd commit ee12bfb

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/ci-cd.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
uses: pnpm/action-setup@v4
1818
with:
1919
version: 9.12.3
20-
- name: Use Node.js ${{ matrix.node-version }}
20+
- name: Use Node.js 20
2121
uses: actions/setup-node@v4
2222
with:
23-
node-version: ${{ matrix.node-version }}
23+
node-version: 20
2424
cache: 'pnpm'
2525
- name: Install dependencies
2626
run: pnpm install
@@ -43,8 +43,11 @@ jobs:
4343
username: ${{ secrets.NCP_ACCESS_KEY }}
4444
password: ${{ secrets.NCP_SECRET_KEY }}
4545

46+
- name: Set up Docker Buildx
47+
uses: docker/setup-buildx-action@v3
48+
4649
- name: Docker front image build and push
47-
uses: docker/build-push-action@v3
50+
uses: docker/build-push-action@v6
4851
with:
4952
context: .
5053
file: ./apps/client/Dockerfile.CI
@@ -56,7 +59,7 @@ jobs:
5659
cache-to: type=registry,ref=cloud-canvas.kr.ncr.ntruss.com/front:dev,mode=max
5760

5861
- name: Docker front-hub image build and push
59-
uses: docker/build-push-action@v3
62+
uses: docker/build-push-action@v6
6063
with:
6164
context: .
6265
file: ./apps/hub/Dockerfile.CI
@@ -68,7 +71,7 @@ jobs:
6871
cache-to: type=registry,ref=cloud-canvas.kr.ncr.ntruss.com/front-hub:dev,mode=max
6972

7073
- name: Docker back image build and push
71-
uses: docker/build-push-action@v3
74+
uses: docker/build-push-action@v6
7275
with:
7376
context: .
7477
file: ./apps/server/Dockerfile.CI

0 commit comments

Comments
 (0)