Skip to content

Commit

Permalink
#166 [chore] : artifact actions를 v4로 버전업한다
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbang105 committed Jan 30, 2025
1 parent 114be53 commit 614d8cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prod-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

# 3. 빌드 결과를 아티팩트로 저장
- name: 📦 빌드 결과 저장
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: build/libs/*.jar
Expand All @@ -40,7 +40,7 @@ jobs:

# 2. 빌드 결과 다운로드
- name: 📦 빌드 결과 다운로드
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-artifacts

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

# 3. 빌드 결과를 아티팩트로 저장
- name: 📦 빌드 결과 저장
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: build/libs/*.jar
Expand All @@ -39,7 +39,7 @@ jobs:

# 2. 빌드 결과 다운로드
- name: 📦 빌드 결과 다운로드
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-artifacts

Expand Down

0 comments on commit 614d8cb

Please sign in to comment.