project-auto-wizard 0.1.23 → 0.1.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/README.md +3 -1
  2. package/package.json +1 -1
  3. package/payload/scripts/__pycache__/changelog_manager.cpython-314.pyc +0 -0
  4. package/payload/scripts/__pycache__/version_manager.cpython-314.pyc +0 -0
  5. package/payload/workflows/common/PROJECT-COMMON-AI-PR-SUMMARY.yaml +1 -1
  6. package/payload/workflows/common/PROJECT-COMMON-AUTO-CHANGELOG-CONTROL.yaml +1 -1
  7. package/payload/workflows/common/PROJECT-COMMON-README-VERSION-UPDATE.yaml +1 -1
  8. package/payload/workflows/common/PROJECT-COMMON-RELEASE-PUBLISH.yaml +1 -1
  9. package/payload/workflows/common/PROJECT-COMMON-VERSION-CONTROL.yaml +1 -1
  10. package/payload/workflows/flutter/PROJECT-FLUTTER-ANDROID-FIREBASE-CICD.yaml +13 -13
  11. package/payload/workflows/flutter/PROJECT-FLUTTER-ANDROID-PLAYSTORE-CICD.yaml +13 -13
  12. package/payload/workflows/flutter/PROJECT-FLUTTER-ANDROID-SELFHOSTED-CICD.yaml +7 -7
  13. package/payload/workflows/flutter/PROJECT-FLUTTER-ANDROID-TEST-APK.yaml +14 -14
  14. package/payload/workflows/flutter/PROJECT-FLUTTER-CI.yaml +16 -16
  15. package/payload/workflows/flutter/PROJECT-FLUTTER-IOS-TEST-TESTFLIGHT.yaml +18 -18
  16. package/payload/workflows/flutter/PROJECT-FLUTTER-IOS-TESTFLIGHT.yaml +11 -11
  17. package/payload/workflows/flutter/PROJECT-FLUTTER-SUH-LAB-APP-BUILD-TRIGGER.yaml +9 -9
  18. package/payload/workflows/next/PROJECT-NEXT-CI.yaml +6 -6
  19. package/payload/workflows/next/PROJECT-NEXT-CICD.yaml +6 -6
  20. package/payload/workflows/python/PROJECT-PYTHON-CI.yaml +1 -1
  21. package/payload/workflows/python/PROJECT-PYTHON-PR-PREVIEW.yaml +27 -27
  22. package/payload/workflows/python/PROJECT-PYTHON-SIMPLE-CICD.yaml +1 -1
  23. package/payload/workflows/react/PROJECT-REACT-CI.yaml +6 -6
  24. package/payload/workflows/react/PROJECT-REACT-CICD.yaml +6 -6
  25. package/payload/workflows/spring/PROJECT-SPRING-GITHUB-PACKAGES-PUBLISH.yml +2 -2
  26. package/payload/workflows/spring/nexus/PROJECT-SPRING-NEXUS-CI.yml +5 -5
  27. package/payload/workflows/spring/nexus/PROJECT-SPRING-NEXUS-PUBLISH.yml +2 -2
  28. package/payload/workflows/spring/server-deploy/PROJECT-SPRING-NONSTOP-NGINX-CICD.yaml +3 -3
  29. package/payload/workflows/spring/server-deploy/PROJECT-SPRING-NONSTOP-TRAEFIK-CICD.yaml +3 -3
  30. package/payload/workflows/spring/server-deploy/PROJECT-SPRING-PR-PREVIEW.yaml +36 -36
  31. package/payload/workflows/spring/server-deploy/PROJECT-SPRING-SIMPLE-CICD.yaml +3 -3
@@ -50,7 +50,7 @@ jobs:
50
50
  steps:
51
51
  # 1. 소스코드 체크아웃
52
52
  - name: 코드 체크아웃
53
- uses: actions/checkout@v5
53
+ uses: actions/checkout@v7
54
54
 
55
55
  # 2. 환경변수 파일 생성
56
56
  - name: 환경변수 파일 생성 (${{ env.ENV_FILE }})
@@ -60,14 +60,14 @@ jobs:
60
60
 
61
61
  # 3. Node.js 설정
62
62
  - name: Node.js 설정
63
- uses: actions/setup-node@v4
63
+ uses: actions/setup-node@v7
64
64
  with:
65
65
  node-version: ${{ env.NODE_VERSION }}
66
66
  cache: "npm"
67
67
 
68
68
  # 4. npm 의존성 캐싱
69
69
  - name: npm 의존성 캐싱
70
- uses: actions/cache@v4
70
+ uses: actions/cache@v6
71
71
  with:
72
72
  path: ~/.npm
73
73
  key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
@@ -78,7 +78,7 @@ jobs:
78
78
  # package-lock.json이 변경되지 않으면 npm ci 건너뛰기
79
79
  - name: node_modules 캐싱
80
80
  id: node-modules-cache
81
- uses: actions/cache@v4
81
+ uses: actions/cache@v6
82
82
  with:
83
83
  path: "**/node_modules"
84
84
  key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
@@ -97,7 +97,7 @@ jobs:
97
97
  # 7. Next.js 빌드 캐싱 (Next.js 프로젝트인 경우)
98
98
  # .next/cache 폴더를 캐싱하여 증분 빌드 속도 향상
99
99
  - name: Next.js 빌드 캐싱
100
- uses: actions/cache@v4
100
+ uses: actions/cache@v6
101
101
  with:
102
102
  path: .next/cache
103
103
  key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
@@ -156,7 +156,7 @@ jobs:
156
156
  # 빌드 성공/실패 여부와 관계없이 로그 저장
157
157
  - name: 빌드 로그 업로드
158
158
  if: always()
159
- uses: actions/upload-artifact@v4
159
+ uses: actions/upload-artifact@v7
160
160
  with:
161
161
  name: build-log
162
162
  path: build_log.txt
@@ -40,11 +40,11 @@ jobs:
40
40
  steps:
41
41
  # 1. 소스코드 체크아웃
42
42
  - name: 코드 체크아웃
43
- uses: actions/checkout@v5
43
+ uses: actions/checkout@v7
44
44
 
45
45
  # 2. Node.js 개발 환경 설정
46
46
  - name: Node.js 설정
47
- uses: actions/setup-node@v4
47
+ uses: actions/setup-node@v7
48
48
  with:
49
49
  node-version: ${{ env.NODE_VERSION }}
50
50
  cache: 'npm'
@@ -59,7 +59,7 @@ jobs:
59
59
 
60
60
  # 4. npm 의존성 캐싱
61
61
  - name: npm 의존성 캐싱
62
- uses: actions/cache@v4
62
+ uses: actions/cache@v6
63
63
  with:
64
64
  path: ~/.npm
65
65
  key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
@@ -69,7 +69,7 @@ jobs:
69
69
  # 5. node_modules 캐싱
70
70
  - name: node_modules 캐싱
71
71
  id: node-modules-cache
72
- uses: actions/cache@v4
72
+ uses: actions/cache@v6
73
73
  with:
74
74
  path: "**/node_modules"
75
75
  key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
@@ -83,7 +83,7 @@ jobs:
83
83
 
84
84
  # 7. Next.js 빌드 캐싱
85
85
  - name: Next.js 빌드 캐싱
86
- uses: actions/cache@v4
86
+ uses: actions/cache@v6
87
87
  with:
88
88
  path: .next/cache
89
89
  key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
@@ -108,7 +108,7 @@ jobs:
108
108
 
109
109
  # 11. Docker 레이어 캐싱
110
110
  - name: Cache Docker layers
111
- uses: actions/cache@v4
111
+ uses: actions/cache@v6
112
112
  with:
113
113
  path: /tmp/.buildx-cache
114
114
  key: ${{ runner.os }}-buildx-${{ hashFiles('Dockerfile') }}-${{ hashFiles('package-lock.json') }}
@@ -49,10 +49,10 @@ jobs:
49
49
  publish:
50
50
  runs-on: ubuntu-latest
51
51
  steps:
52
- - uses: actions/checkout@v5
52
+ - uses: actions/checkout@v7
53
53
 
54
54
  - name: Set up JDK 17
55
- uses: actions/setup-java@v4
55
+ uses: actions/setup-java@v5
56
56
  with:
57
57
  java-version: '17'
58
58
  distribution: 'temurin'
@@ -31,12 +31,12 @@ jobs:
31
31
 
32
32
  steps:
33
33
  - name: Checkout Repository
34
- uses: actions/checkout@v5
34
+ uses: actions/checkout@v7
35
35
  with:
36
36
  fetch-depth: 0
37
37
 
38
38
  - name: Setup JDK 17
39
- uses: actions/setup-java@v4
39
+ uses: actions/setup-java@v5
40
40
  with:
41
41
  java-version: '17'
42
42
  distribution: 'temurin'
@@ -161,7 +161,7 @@ jobs:
161
161
 
162
162
  - name: Comment on PR (Success)
163
163
  if: github.event_name == 'pull_request' && steps.report.outputs.overall_status == '✅ 성공'
164
- uses: actions/github-script@v7
164
+ uses: actions/github-script@v9
165
165
  with:
166
166
  github-token: ${{ secrets.GITHUB_TOKEN }}
167
167
  script: |
@@ -210,7 +210,7 @@ jobs:
210
210
 
211
211
  - name: Comment on PR (Failure)
212
212
  if: github.event_name == 'pull_request' && steps.report.outputs.overall_status == '❌ 실패'
213
- uses: actions/github-script@v7
213
+ uses: actions/github-script@v9
214
214
  with:
215
215
  github-token: ${{ secrets.GITHUB_TOKEN }}
216
216
  script: |
@@ -285,7 +285,7 @@ jobs:
285
285
 
286
286
  - name: Create Check Run
287
287
  if: always()
288
- uses: actions/github-script@v7
288
+ uses: actions/github-script@v9
289
289
  with:
290
290
  github-token: ${{ secrets.GITHUB_TOKEN }}
291
291
  script: |
@@ -20,10 +20,10 @@ jobs:
20
20
  publish:
21
21
  runs-on: ubuntu-latest
22
22
  steps:
23
- - uses: actions/checkout@v5
23
+ - uses: actions/checkout@v7
24
24
 
25
25
  - name: Set up JDK 17
26
- uses: actions/setup-java@v3
26
+ uses: actions/setup-java@v5
27
27
  with:
28
28
  java-version: '17'
29
29
  distribution: 'temurin'
@@ -136,10 +136,10 @@ jobs:
136
136
 
137
137
  steps:
138
138
  - name: 코드 체크아웃
139
- uses: actions/checkout@v5
139
+ uses: actions/checkout@v7
140
140
 
141
141
  - name: Java 설정
142
- uses: actions/setup-java@v4
142
+ uses: actions/setup-java@v5
143
143
  with:
144
144
  java-version: ${{ env.JAVA_VERSION }}
145
145
  distribution: 'temurin'
@@ -169,7 +169,7 @@ jobs:
169
169
  password: ${{ secrets.DOCKERHUB_TOKEN }}
170
170
 
171
171
  - name: Cache Docker layers
172
- uses: actions/cache@v4
172
+ uses: actions/cache@v6
173
173
  with:
174
174
  path: /tmp/.buildx-cache
175
175
  key: ${{ runner.os }}-buildx-${{ hashFiles('Dockerfile') }}
@@ -130,10 +130,10 @@ jobs:
130
130
 
131
131
  steps:
132
132
  - name: 코드 체크아웃
133
- uses: actions/checkout@v5
133
+ uses: actions/checkout@v7
134
134
 
135
135
  - name: Java 설정
136
- uses: actions/setup-java@v4
136
+ uses: actions/setup-java@v5
137
137
  with:
138
138
  java-version: ${{ env.JAVA_VERSION }}
139
139
  distribution: 'temurin'
@@ -163,7 +163,7 @@ jobs:
163
163
  password: ${{ secrets.DOCKERHUB_TOKEN }}
164
164
 
165
165
  - name: Cache Docker layers
166
- uses: actions/cache@v4
166
+ uses: actions/cache@v6
167
167
  with:
168
168
  path: /tmp/.buildx-cache
169
169
  key: ${{ runner.os }}-buildx-${{ hashFiles('Dockerfile') }}
@@ -116,7 +116,7 @@ jobs:
116
116
  steps:
117
117
  - name: 댓글에 👀 리액션 추가
118
118
  if: contains(github.event.comment.body, '@suh-lab') && contains(github.event.comment.body, 'server')
119
- uses: actions/github-script@v7
119
+ uses: actions/github-script@v9
120
120
  with:
121
121
  github-token: ${{ secrets.GITHUB_TOKEN }}
122
122
  script: |
@@ -197,7 +197,7 @@ jobs:
197
197
  steps:
198
198
  - name: PR 정보 가져오기
199
199
  id: pr
200
- uses: actions/github-script@v7
200
+ uses: actions/github-script@v9
201
201
  with:
202
202
  script: |
203
203
  const pr = await github.rest.pulls.get({
@@ -214,7 +214,7 @@ jobs:
214
214
  # ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
215
215
  - name: 진행 상황 댓글 생성
216
216
  id: progress
217
- uses: actions/github-script@v7
217
+ uses: actions/github-script@v9
218
218
  with:
219
219
  script: |
220
220
  const prNumber = context.issue.number;
@@ -247,12 +247,12 @@ jobs:
247
247
  core.setOutput('start_time', startTime);
248
248
 
249
249
  - name: 코드 체크아웃
250
- uses: actions/checkout@v5
250
+ uses: actions/checkout@v7
251
251
  with:
252
252
  ref: ${{ steps.pr.outputs.ref }}
253
253
 
254
254
  - name: JDK 설정
255
- uses: actions/setup-java@v4
255
+ uses: actions/setup-java@v5
256
256
  with:
257
257
  distribution: 'temurin'
258
258
  java-version: ${{ env.JAVA_VERSION }}
@@ -309,7 +309,7 @@ jobs:
309
309
 
310
310
  - name: 진행 상황 - 빌드 완료
311
311
  id: build_progress
312
- uses: actions/github-script@v7
312
+ uses: actions/github-script@v9
313
313
  with:
314
314
  script: |
315
315
  const commentId = ${{ steps.progress.outputs.comment_id }};
@@ -367,7 +367,7 @@ jobs:
367
367
 
368
368
  - name: 진행 상황 - Docker 완료
369
369
  id: docker_progress
370
- uses: actions/github-script@v7
370
+ uses: actions/github-script@v9
371
371
  with:
372
372
  script: |
373
373
  const commentId = ${{ steps.progress.outputs.comment_id }};
@@ -555,7 +555,7 @@ jobs:
555
555
  echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
556
556
 
557
557
  - name: 배포 완료 코멘트
558
- uses: actions/github-script@v7
558
+ uses: actions/github-script@v9
559
559
  with:
560
560
  script: |
561
561
  const commentId = ${{ steps.progress.outputs.comment_id }};
@@ -633,7 +633,7 @@ jobs:
633
633
 
634
634
  - name: 빌드/배포 실패 시 에러 코멘트
635
635
  if: failure()
636
- uses: actions/github-script@v7
636
+ uses: actions/github-script@v9
637
637
  with:
638
638
  script: |
639
639
  const commentId = ${{ steps.progress.outputs.comment_id || 0 }};
@@ -734,7 +734,7 @@ jobs:
734
734
  steps:
735
735
  - name: Issue 댓글에서 브랜치명 추출
736
736
  id: extract
737
- uses: actions/github-script@v7
737
+ uses: actions/github-script@v9
738
738
  with:
739
739
  script: |
740
740
  const issueNumber = context.issue.number;
@@ -776,7 +776,7 @@ jobs:
776
776
 
777
777
  - name: 브랜치 없음 알림
778
778
  if: steps.extract.outputs.found == 'false'
779
- uses: actions/github-script@v7
779
+ uses: actions/github-script@v9
780
780
  with:
781
781
  script: |
782
782
  const issueNumber = context.issue.number;
@@ -822,7 +822,7 @@ jobs:
822
822
  steps:
823
823
  - name: 브랜치 존재 확인
824
824
  id: check_branch
825
- uses: actions/github-script@v7
825
+ uses: actions/github-script@v9
826
826
  with:
827
827
  script: |
828
828
  const branchName = '${{ needs.get-branch-from-issue.outputs.branch_name }}';
@@ -893,7 +893,7 @@ jobs:
893
893
  - name: 진행 상황 댓글 생성
894
894
  if: steps.check_branch.outputs.exists == 'true'
895
895
  id: progress
896
- uses: actions/github-script@v7
896
+ uses: actions/github-script@v9
897
897
  with:
898
898
  script: |
899
899
  const issueNumber = ${{ needs.get-branch-from-issue.outputs.issue_number }};
@@ -930,13 +930,13 @@ jobs:
930
930
 
931
931
  - name: 코드 체크아웃
932
932
  if: steps.check_branch.outputs.exists == 'true'
933
- uses: actions/checkout@v5
933
+ uses: actions/checkout@v7
934
934
  with:
935
935
  ref: ${{ needs.get-branch-from-issue.outputs.branch_name }}
936
936
 
937
937
  - name: JDK 설정
938
938
  if: steps.check_branch.outputs.exists == 'true'
939
- uses: actions/setup-java@v4
939
+ uses: actions/setup-java@v5
940
940
  with:
941
941
  distribution: 'temurin'
942
942
  java-version: ${{ env.JAVA_VERSION }}
@@ -967,7 +967,7 @@ jobs:
967
967
  - name: 진행 상황 - 빌드 완료
968
968
  if: steps.check_branch.outputs.exists == 'true'
969
969
  id: build_progress
970
- uses: actions/github-script@v7
970
+ uses: actions/github-script@v9
971
971
  with:
972
972
  script: |
973
973
  const commentId = ${{ steps.progress.outputs.comment_id }};
@@ -1032,7 +1032,7 @@ jobs:
1032
1032
  - name: 진행 상황 - Docker 완료
1033
1033
  if: steps.check_branch.outputs.exists == 'true'
1034
1034
  id: docker_progress
1035
- uses: actions/github-script@v7
1035
+ uses: actions/github-script@v9
1036
1036
  with:
1037
1037
  script: |
1038
1038
  const commentId = ${{ steps.progress.outputs.comment_id }};
@@ -1225,7 +1225,7 @@ jobs:
1225
1225
 
1226
1226
  - name: 배포 완료 코멘트
1227
1227
  if: steps.check_branch.outputs.exists == 'true'
1228
- uses: actions/github-script@v7
1228
+ uses: actions/github-script@v9
1229
1229
  with:
1230
1230
  script: |
1231
1231
  const commentId = ${{ steps.progress.outputs.comment_id }};
@@ -1305,7 +1305,7 @@ jobs:
1305
1305
 
1306
1306
  - name: 빌드/배포 실패 시 에러 코멘트
1307
1307
  if: failure() && steps.check_branch.outputs.exists == 'true'
1308
- uses: actions/github-script@v7
1308
+ uses: actions/github-script@v9
1309
1309
  with:
1310
1310
  script: |
1311
1311
  const commentId = ${{ steps.progress.outputs.comment_id || 0 }};
@@ -1460,7 +1460,7 @@ jobs:
1460
1460
  github.event_name == 'issue_comment' ||
1461
1461
  (github.event_name == 'pull_request' && github.event.action == 'closed') ||
1462
1462
  (github.event_name == 'issues' && github.event.action == 'closed')
1463
- uses: actions/github-script@v7
1463
+ uses: actions/github-script@v9
1464
1464
  with:
1465
1465
  script: |
1466
1466
  const number = ${{ steps.pr_number.outputs.number }};
@@ -1546,7 +1546,7 @@ jobs:
1546
1546
  docker ps --filter "name=${CONTAINER_NAME}" --format "{{.Names}}" | grep -q "${CONTAINER_NAME}"
1547
1547
 
1548
1548
  - name: 상태 코멘트 작성
1549
- uses: actions/github-script@v7
1549
+ uses: actions/github-script@v9
1550
1550
  with:
1551
1551
  script: |
1552
1552
  const number = context.issue.number;
@@ -1619,7 +1619,7 @@ jobs:
1619
1619
  steps:
1620
1620
  - name: 브랜치명에서 Issue 번호 추출
1621
1621
  id: extract
1622
- uses: actions/github-script@v7
1622
+ uses: actions/github-script@v9
1623
1623
  with:
1624
1624
  script: |
1625
1625
  const branchName = '${{ needs.check-command.outputs.custom_branch }}';
@@ -1646,7 +1646,7 @@ jobs:
1646
1646
 
1647
1647
  - name: 브랜치 존재 여부 확인
1648
1648
  id: check_branch
1649
- uses: actions/github-script@v7
1649
+ uses: actions/github-script@v9
1650
1650
  with:
1651
1651
  script: |
1652
1652
  const branchName = '${{ steps.extract.outputs.branch_name }}';
@@ -1667,7 +1667,7 @@ jobs:
1667
1667
 
1668
1668
  - name: 브랜치 없음 에러 코멘트
1669
1669
  if: steps.check_branch.outputs.exists == 'false'
1670
- uses: actions/github-script@v7
1670
+ uses: actions/github-script@v9
1671
1671
  with:
1672
1672
  script: |
1673
1673
  const branchName = '${{ steps.extract.outputs.branch_name }}';
@@ -1699,7 +1699,7 @@ jobs:
1699
1699
 
1700
1700
  - name: 체크아웃
1701
1701
  if: steps.check_branch.outputs.exists == 'true'
1702
- uses: actions/checkout@v5
1702
+ uses: actions/checkout@v7
1703
1703
  with:
1704
1704
  ref: ${{ steps.extract.outputs.branch_name }}
1705
1705
 
@@ -1711,7 +1711,7 @@ jobs:
1711
1711
  - name: 진행 상황 코멘트 작성
1712
1712
  if: steps.check_branch.outputs.exists == 'true'
1713
1713
  id: progress
1714
- uses: actions/github-script@v7
1714
+ uses: actions/github-script@v9
1715
1715
  with:
1716
1716
  script: |
1717
1717
  const projectName = '${{ env.PROJECT_NAME }}';
@@ -1746,14 +1746,14 @@ jobs:
1746
1746
 
1747
1747
  - name: JDK 설정
1748
1748
  if: steps.check_branch.outputs.exists == 'true'
1749
- uses: actions/setup-java@v4
1749
+ uses: actions/setup-java@v5
1750
1750
  with:
1751
1751
  java-version: ${{ env.JAVA_VERSION }}
1752
1752
  distribution: 'temurin'
1753
1753
 
1754
1754
  - name: Gradle 캐시
1755
1755
  if: steps.check_branch.outputs.exists == 'true'
1756
- uses: actions/cache@v4
1756
+ uses: actions/cache@v6
1757
1757
  with:
1758
1758
  path: |
1759
1759
  ~/.gradle/caches
@@ -1776,7 +1776,7 @@ jobs:
1776
1776
  - name: 빌드 완료 진행 상황 업데이트
1777
1777
  if: steps.check_branch.outputs.exists == 'true'
1778
1778
  id: build_progress
1779
- uses: actions/github-script@v7
1779
+ uses: actions/github-script@v9
1780
1780
  with:
1781
1781
  script: |
1782
1782
  const commentId = ${{ steps.progress.outputs.comment_id }};
@@ -1834,7 +1834,7 @@ jobs:
1834
1834
  - name: Docker 완료 진행 상황 업데이트
1835
1835
  if: steps.check_branch.outputs.exists == 'true'
1836
1836
  id: docker_progress
1837
- uses: actions/github-script@v7
1837
+ uses: actions/github-script@v9
1838
1838
  with:
1839
1839
  script: |
1840
1840
  const commentId = ${{ steps.progress.outputs.comment_id }};
@@ -1936,7 +1936,7 @@ jobs:
1936
1936
 
1937
1937
  - name: 배포 완료 코멘트
1938
1938
  if: steps.check_branch.outputs.exists == 'true'
1939
- uses: actions/github-script@v7
1939
+ uses: actions/github-script@v9
1940
1940
  with:
1941
1941
  script: |
1942
1942
  const commentId = ${{ steps.progress.outputs.comment_id }};
@@ -2001,7 +2001,7 @@ jobs:
2001
2001
 
2002
2002
  - name: 빌드/배포 실패 시 에러 코멘트
2003
2003
  if: failure() && steps.check_branch.outputs.exists == 'true'
2004
- uses: actions/github-script@v7
2004
+ uses: actions/github-script@v9
2005
2005
  with:
2006
2006
  script: |
2007
2007
  const commentId = ${{ steps.progress.outputs.comment_id || 0 }};
@@ -2086,7 +2086,7 @@ jobs:
2086
2086
  steps:
2087
2087
  - name: 브랜치명에서 컨테이너 suffix 추출
2088
2088
  id: extract
2089
- uses: actions/github-script@v7
2089
+ uses: actions/github-script@v9
2090
2090
  with:
2091
2091
  script: |
2092
2092
  const branchName = '${{ needs.check-command.outputs.custom_branch }}';
@@ -2138,7 +2138,7 @@ jobs:
2138
2138
  fi
2139
2139
 
2140
2140
  - name: 삭제 확인 코멘트
2141
- uses: actions/github-script@v7
2141
+ uses: actions/github-script@v9
2142
2142
  with:
2143
2143
  script: |
2144
2144
  const projectName = '${{ env.PROJECT_NAME }}';
@@ -2178,7 +2178,7 @@ jobs:
2178
2178
  steps:
2179
2179
  - name: 브랜치명에서 컨테이너 suffix 추출
2180
2180
  id: extract
2181
- uses: actions/github-script@v7
2181
+ uses: actions/github-script@v9
2182
2182
  with:
2183
2183
  script: |
2184
2184
  const branchName = '${{ needs.check-command.outputs.custom_branch }}';
@@ -2219,7 +2219,7 @@ jobs:
2219
2219
  docker ps --filter "name=${CONTAINER_NAME}" --format "{{.Names}}" | grep -q "${CONTAINER_NAME}"
2220
2220
 
2221
2221
  - name: 상태 코멘트 작성
2222
- uses: actions/github-script@v7
2222
+ uses: actions/github-script@v9
2223
2223
  with:
2224
2224
  script: |
2225
2225
  const projectName = '${{ env.PROJECT_NAME }}';
@@ -130,11 +130,11 @@ jobs:
130
130
  steps:
131
131
  # 1. 소스코드 체크아웃
132
132
  - name: 코드 체크아웃
133
- uses: actions/checkout@v5
133
+ uses: actions/checkout@v7
134
134
 
135
135
  # 2. Java 개발 환경 설정
136
136
  - name: Java 설정
137
- uses: actions/setup-java@v4
137
+ uses: actions/setup-java@v5
138
138
  with:
139
139
  java-version: ${{ env.JAVA_VERSION }}
140
140
  distribution: 'temurin'
@@ -178,7 +178,7 @@ jobs:
178
178
  # 8. Docker 레이어 캐싱 설정
179
179
  # 빌드 속도 향상을 위한 캐시 설정
180
180
  - name: Cache Docker layers
181
- uses: actions/cache@v4
181
+ uses: actions/cache@v6
182
182
  with:
183
183
  path: /tmp/.buildx-cache
184
184
  key: ${{ runner.os }}-buildx-${{ hashFiles('Dockerfile') }}