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
package/README.md CHANGED
@@ -17,7 +17,7 @@ npx project-auto-wizard
17
17
  [![node](https://img.shields.io/badge/node-%3E%3D20.12-brightgreen)](package.json)
18
18
 
19
19
  <!-- AUTO-VERSION-SECTION: DO NOT EDIT MANUALLY -->
20
- ## 최신 버전 : v0.1.23 (2026-08-06)
20
+ ## 최신 버전 : v0.1.24 (2026-08-06)
21
21
 
22
22
  [전체 버전 기록 보기](CHANGELOG.md)
23
23
 
@@ -118,6 +118,8 @@ flowchart LR
118
118
  end
119
119
  ```
120
120
 
121
+ 릴리스 PR이 머지되면 `RELEASE-PUBLISH`가 태그와 GitHub Release를 발행합니다. 이 저장소 자신은 그 **Release 발행 이벤트**를 받아 npm에 배포합니다 — 태그가 불변 스냅샷이므로 "무엇이 배포되는가"가 워크플로우 실행 타이밍에 좌우되지 않고, 배포처를 늘릴 때도 같은 이벤트에 워크플로우를 하나 더 붙이면 됩니다.
122
+
121
123
  - **pr-flow** (기본): `VERSION-CONTROL`(main 직접 push 안전망) + `AUTO-CHANGELOG-CONTROL`(릴리스 PR) + `RELEASE-PUBLISH`(tag+Release) 3종 설치
122
124
  - **trunk-based** (릴리스 브랜치 = 개발 브랜치): `RELEASE-PUBLISH` 하나가 main push마다 버전확정 → 체인지로그 → tag → Release를 순차 처리
123
125
  - 마법사가 브랜치를 묻고(`--main-branch`/`--develop-branch`) 없으면 **생성 + push**까지. 선택은 `version.yml`에 저장되어 업데이트 시 재질문 없음
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-auto-wizard",
3
- "version": "0.1.23",
3
+ "version": "0.1.25",
4
4
  "description": "One command DevOps: npx wizard that installs GitHub-native AI Release Automation into any project",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -37,7 +37,7 @@ jobs:
37
37
  runs-on: ubuntu-latest
38
38
  steps:
39
39
  - name: Checkout PR head
40
- uses: actions/checkout@v5
40
+ uses: actions/checkout@v7
41
41
  with:
42
42
  fetch-depth: 0
43
43
  ref: ${{ github.event.pull_request.head.ref }}
@@ -66,7 +66,7 @@ jobs:
66
66
  runs-on: ubuntu-latest
67
67
  steps:
68
68
  - name: Checkout PR head
69
- uses: actions/checkout@v5
69
+ uses: actions/checkout@v7
70
70
  with:
71
71
  token: ${{ secrets.GITHUB_TOKEN }}
72
72
  fetch-depth: 0
@@ -68,7 +68,7 @@ jobs:
68
68
  runs-on: ubuntu-latest
69
69
  steps:
70
70
  - name: Checkout repository
71
- uses: actions/checkout@v5
71
+ uses: actions/checkout@v7
72
72
  with:
73
73
  token: ${{ secrets.GITHUB_TOKEN }}
74
74
  fetch-depth: 0
@@ -62,7 +62,7 @@ jobs:
62
62
  runs-on: ubuntu-latest
63
63
  steps:
64
64
  - name: Checkout repository
65
- uses: actions/checkout@v5
65
+ uses: actions/checkout@v7
66
66
  with:
67
67
  token: ${{ secrets.GITHUB_TOKEN }}
68
68
  fetch-depth: 0
@@ -47,7 +47,7 @@ jobs:
47
47
 
48
48
  steps:
49
49
  - name: Checkout repository
50
- uses: actions/checkout@v5
50
+ uses: actions/checkout@v7
51
51
  with:
52
52
  token: ${{ secrets.GITHUB_TOKEN }}
53
53
  fetch-depth: 0
@@ -83,7 +83,7 @@ jobs:
83
83
 
84
84
  steps:
85
85
  - name: Checkout repository
86
- uses: actions/checkout@v5
86
+ uses: actions/checkout@v7
87
87
  with:
88
88
  ref: main
89
89
  fetch-depth: 0
@@ -105,7 +105,7 @@ jobs:
105
105
  cache: true
106
106
 
107
107
  - name: Cache Flutter dependencies
108
- uses: actions/cache@v4
108
+ uses: actions/cache@v6
109
109
  with:
110
110
  path: ~/.pub-cache
111
111
  key: ${{ runner.os }}-flutter-pub-${{ hashFiles('**/pubspec.lock') }}
@@ -175,7 +175,7 @@ jobs:
175
175
 
176
176
  # 릴리즈 노트를 아티팩트로 업로드
177
177
  - name: Upload release notes
178
- uses: actions/upload-artifact@v4
178
+ uses: actions/upload-artifact@v7
179
179
  with:
180
180
  name: release-notes
181
181
  path: final_release_notes.txt
@@ -184,7 +184,7 @@ jobs:
184
184
  # 프로젝트 파일들을 아티팩트로 업로드
185
185
  # .env는 보안상 아티팩트에 포함하지 않고, 각 job에서 secrets로 재생성
186
186
  - name: Upload project files
187
- uses: actions/upload-artifact@v4
187
+ uses: actions/upload-artifact@v7
188
188
  with:
189
189
  name: project-files
190
190
  path: |
@@ -200,7 +200,7 @@ jobs:
200
200
 
201
201
  steps:
202
202
  - name: Checkout repository
203
- uses: actions/checkout@v5
203
+ uses: actions/checkout@v7
204
204
  with:
205
205
  ref: main
206
206
  fetch-depth: 0
@@ -210,7 +210,7 @@ jobs:
210
210
 
211
211
  # 프로젝트 파일들 다운로드
212
212
  - name: Download project files
213
- uses: actions/download-artifact@v4
213
+ uses: actions/download-artifact@v8
214
214
  with:
215
215
  name: project-files
216
216
  path: .
@@ -258,7 +258,7 @@ jobs:
258
258
  cache: true
259
259
 
260
260
  - name: Cache Flutter dependencies
261
- uses: actions/cache@v4
261
+ uses: actions/cache@v6
262
262
  with:
263
263
  path: ~/.pub-cache
264
264
  key: ${{ runner.os }}-flutter-pub-${{ hashFiles('**/pubspec.lock') }}
@@ -268,13 +268,13 @@ jobs:
268
268
  run: flutter pub get
269
269
 
270
270
  - name: Set up Java
271
- uses: actions/setup-java@v4
271
+ uses: actions/setup-java@v5
272
272
  with:
273
273
  distribution: "temurin"
274
274
  java-version: ${{ env.JAVA_VERSION }}
275
275
 
276
276
  - name: Cache Gradle dependencies
277
- uses: actions/cache@v4
277
+ uses: actions/cache@v6
278
278
  with:
279
279
  path: |
280
280
  ~/.gradle/caches
@@ -510,7 +510,7 @@ jobs:
510
510
 
511
511
  # AAB 파일을 아티팩트로 업로드
512
512
  - name: Upload AAB artifact
513
- uses: actions/upload-artifact@v4
513
+ uses: actions/upload-artifact@v7
514
514
  with:
515
515
  name: android-aab
516
516
  path: build/app/outputs/bundle/release/app-release.aab
@@ -523,21 +523,21 @@ jobs:
523
523
 
524
524
  steps:
525
525
  - name: Checkout repository
526
- uses: actions/checkout@v5
526
+ uses: actions/checkout@v7
527
527
  with:
528
528
  ref: main
529
529
  fetch-depth: 0
530
530
 
531
531
  # AAB 파일 다운로드
532
532
  - name: Download AAB artifact
533
- uses: actions/download-artifact@v4
533
+ uses: actions/download-artifact@v8
534
534
  with:
535
535
  name: android-aab
536
536
  path: build/app/outputs/bundle/release/
537
537
 
538
538
  # 릴리즈 노트 다운로드
539
539
  - name: Download release notes
540
- uses: actions/download-artifact@v4
540
+ uses: actions/download-artifact@v8
541
541
  with:
542
542
  name: release-notes
543
543
  path: .
@@ -68,7 +68,7 @@ jobs:
68
68
 
69
69
  steps:
70
70
  - name: Checkout repository
71
- uses: actions/checkout@v5
71
+ uses: actions/checkout@v7
72
72
  with:
73
73
  ref: main
74
74
  fetch-depth: 0
@@ -90,7 +90,7 @@ jobs:
90
90
  cache: true
91
91
 
92
92
  - name: Cache Flutter dependencies
93
- uses: actions/cache@v4
93
+ uses: actions/cache@v6
94
94
  with:
95
95
  path: ~/.pub-cache
96
96
  key: ${{ runner.os }}-flutter-pub-${{ hashFiles('**/pubspec.lock') }}
@@ -162,7 +162,7 @@ jobs:
162
162
 
163
163
  # 릴리즈 노트를 아티팩트로 업로드
164
164
  - name: Upload release notes
165
- uses: actions/upload-artifact@v4
165
+ uses: actions/upload-artifact@v7
166
166
  with:
167
167
  name: release-notes
168
168
  path: final_release_notes.txt
@@ -171,7 +171,7 @@ jobs:
171
171
  # 프로젝트 파일들을 아티팩트로 업로드
172
172
  # .env는 보안상 아티팩트에 포함하지 않고, 각 job에서 secrets로 재생성
173
173
  - name: Upload project files
174
- uses: actions/upload-artifact@v4
174
+ uses: actions/upload-artifact@v7
175
175
  with:
176
176
  name: project-files
177
177
  path: |
@@ -190,7 +190,7 @@ jobs:
190
190
 
191
191
  steps:
192
192
  - name: Checkout repository
193
- uses: actions/checkout@v5
193
+ uses: actions/checkout@v7
194
194
  with:
195
195
  ref: main
196
196
  fetch-depth: 0
@@ -200,7 +200,7 @@ jobs:
200
200
 
201
201
  # 프로젝트 파일들 다운로드
202
202
  - name: Download project files
203
- uses: actions/download-artifact@v4
203
+ uses: actions/download-artifact@v8
204
204
  with:
205
205
  name: project-files
206
206
  path: .
@@ -248,7 +248,7 @@ jobs:
248
248
  cache: true
249
249
 
250
250
  - name: Cache Flutter dependencies
251
- uses: actions/cache@v4
251
+ uses: actions/cache@v6
252
252
  with:
253
253
  path: ~/.pub-cache
254
254
  key: ${{ runner.os }}-flutter-pub-${{ hashFiles('**/pubspec.lock') }}
@@ -258,13 +258,13 @@ jobs:
258
258
  run: flutter pub get
259
259
 
260
260
  - name: Set up Java
261
- uses: actions/setup-java@v4
261
+ uses: actions/setup-java@v5
262
262
  with:
263
263
  distribution: "temurin"
264
264
  java-version: ${{ env.JAVA_VERSION }}
265
265
 
266
266
  - name: Cache Gradle dependencies
267
- uses: actions/cache@v4
267
+ uses: actions/cache@v6
268
268
  with:
269
269
  path: |
270
270
  ~/.gradle/caches
@@ -500,7 +500,7 @@ jobs:
500
500
 
501
501
  # AAB 파일을 아티팩트로 업로드
502
502
  - name: Upload AAB artifact
503
- uses: actions/upload-artifact@v4
503
+ uses: actions/upload-artifact@v7
504
504
  with:
505
505
  name: android-aab
506
506
  path: ${{ env.FLUTTER_ROOT }}/build/app/outputs/bundle/release/app-release.aab
@@ -516,7 +516,7 @@ jobs:
516
516
 
517
517
  steps:
518
518
  - name: Checkout repository
519
- uses: actions/checkout@v5
519
+ uses: actions/checkout@v7
520
520
  with:
521
521
  ref: main
522
522
  fetch-depth: 0
@@ -530,14 +530,14 @@ jobs:
530
530
 
531
531
  # AAB 파일 다운로드
532
532
  - name: Download AAB artifact
533
- uses: actions/download-artifact@v4
533
+ uses: actions/download-artifact@v8
534
534
  with:
535
535
  name: android-aab
536
536
  path: ${{ env.FLUTTER_ROOT }}/build/app/outputs/bundle/release/
537
537
 
538
538
  # 릴리즈 노트 다운로드
539
539
  - name: Download release notes
540
- uses: actions/download-artifact@v4
540
+ uses: actions/download-artifact@v8
541
541
  with:
542
542
  name: release-notes
543
543
  path: .
@@ -49,7 +49,7 @@ jobs:
49
49
  steps:
50
50
  # Repository 체크아웃 및 목록 출력
51
51
  - name: Check out repository
52
- uses: actions/checkout@v5
52
+ uses: actions/checkout@v7
53
53
  with:
54
54
  fetch-depth: 0
55
55
 
@@ -114,14 +114,14 @@ jobs:
114
114
 
115
115
  # Flutter 및 Gradle 캐시
116
116
  - name: Cache Flutter dependencies
117
- uses: actions/cache@v4
117
+ uses: actions/cache@v6
118
118
  with:
119
119
  path: ~/.pub-cache
120
120
  key: ${{ runner.os }}-flutter-pub-${{ hashFiles('**/pubspec.lock') }}
121
121
  restore-keys: ${{ runner.os }}-flutter-pub-
122
122
 
123
123
  - name: Cache Gradle dependencies
124
- uses: actions/cache@v4
124
+ uses: actions/cache@v6
125
125
  with:
126
126
  path: |
127
127
  ~/.gradle/caches
@@ -146,7 +146,7 @@ jobs:
146
146
 
147
147
  # Java 설정 및 버전 확인
148
148
  - name: Set up Java
149
- uses: actions/setup-java@v3
149
+ uses: actions/setup-java@v5
150
150
  with:
151
151
  distribution: "temurin"
152
152
  java-version: ${{ env.JAVA_VERSION }}
@@ -212,7 +212,7 @@ jobs:
212
212
 
213
213
  # APK를 아티팩트로 업로드
214
214
  - name: Upload APK as Artifact
215
- uses: actions/upload-artifact@v4
215
+ uses: actions/upload-artifact@v7
216
216
  with:
217
217
  name: ${{ env.APP_ARTIFACT_NAME }}-apk
218
218
  path: ./android/app/build/outputs/apk/release/${{ env.APP_ARTIFACT_NAME }}-v${{ env.VERSION }}-${{ env.SHORT_COMMIT_HASH }}.apk
@@ -226,7 +226,7 @@ jobs:
226
226
 
227
227
  steps:
228
228
  - name: Checkout code
229
- uses: actions/checkout@v5
229
+ uses: actions/checkout@v7
230
230
 
231
231
  - name: List repository contents for deploy
232
232
  run: |
@@ -240,7 +240,7 @@ jobs:
240
240
  echo "SMB and jq dependencies installed"
241
241
 
242
242
  - name: Download build artifacts
243
- uses: actions/download-artifact@v4
243
+ uses: actions/download-artifact@v8
244
244
  with:
245
245
  name: ${{ env.APP_ARTIFACT_NAME }}-apk
246
246
  path: android/app/build/outputs/
@@ -87,7 +87,7 @@ jobs:
87
87
  - name: 브랜치 존재 여부 사전 확인
88
88
  id: verify_branch
89
89
  if: github.event_name == 'repository_dispatch'
90
- uses: actions/github-script@v7
90
+ uses: actions/github-script@v9
91
91
  with:
92
92
  github-token: ${{ secrets.GITHUB_TOKEN }}
93
93
  script: |
@@ -158,7 +158,7 @@ jobs:
158
158
  - name: 진행 상황 댓글 생성
159
159
  id: progress_comment
160
160
  if: github.event_name == 'repository_dispatch' && github.event.client_payload.pr_number != ''
161
- uses: actions/github-script@v7
161
+ uses: actions/github-script@v9
162
162
  with:
163
163
  github-token: ${{ secrets.GITHUB_TOKEN }}
164
164
  script: |
@@ -199,7 +199,7 @@ jobs:
199
199
  core.setOutput('start_time', startTime.toString());
200
200
 
201
201
  - name: Checkout repository
202
- uses: actions/checkout@v5
202
+ uses: actions/checkout@v7
203
203
  with:
204
204
  fetch-depth: 0
205
205
  ref: ${{ github.event_name == 'repository_dispatch' && github.event.client_payload.branch_name || github.ref }}
@@ -302,7 +302,7 @@ jobs:
302
302
 
303
303
  steps:
304
304
  - name: Checkout repository
305
- uses: actions/checkout@v5
305
+ uses: actions/checkout@v7
306
306
  with:
307
307
  fetch-depth: 0
308
308
  ref: ${{ github.event_name == 'repository_dispatch' && github.event.client_payload.branch_name || github.ref }}
@@ -368,14 +368,14 @@ EOF
368
368
 
369
369
  # Flutter 및 Gradle 캐시
370
370
  - name: Cache Flutter dependencies
371
- uses: actions/cache@v4
371
+ uses: actions/cache@v6
372
372
  with:
373
373
  path: ~/.pub-cache
374
374
  key: ${{ runner.os }}-flutter-pub-${{ hashFiles('**/pubspec.lock') }}
375
375
  restore-keys: ${{ runner.os }}-flutter-pub-
376
376
 
377
377
  - name: Cache Gradle dependencies
378
- uses: actions/cache@v4
378
+ uses: actions/cache@v6
379
379
  with:
380
380
  path: |
381
381
  ~/.gradle/caches
@@ -399,7 +399,7 @@ EOF
399
399
 
400
400
  # Java 설정
401
401
  - name: Set up Java
402
- uses: actions/setup-java@v3
402
+ uses: actions/setup-java@v5
403
403
  with:
404
404
  distribution: "temurin"
405
405
  java-version: ${{ env.JAVA_VERSION }}
@@ -435,7 +435,7 @@ EOF
435
435
  - name: 진행상황 - 준비 완료
436
436
  id: progress_step1
437
437
  if: github.event_name == 'repository_dispatch' && needs.prepare-test-build.outputs.progress_comment_id != ''
438
- uses: actions/github-script@v7
438
+ uses: actions/github-script@v9
439
439
  with:
440
440
  github-token: ${{ secrets.GITHUB_TOKEN }}
441
441
  script: |
@@ -576,7 +576,7 @@ EOF
576
576
  - name: 진행상황 - APK 빌드 완료
577
577
  id: progress_step2
578
578
  if: github.event_name == 'repository_dispatch' && needs.prepare-test-build.outputs.progress_comment_id != ''
579
- uses: actions/github-script@v7
579
+ uses: actions/github-script@v9
580
580
  with:
581
581
  github-token: ${{ secrets.GITHUB_TOKEN }}
582
582
  script: |
@@ -686,7 +686,7 @@ EOF
686
686
  # APK와 빌드 정보를 아티팩트로 업로드 (브랜치명 포함)
687
687
  - name: Upload APK and build info as Artifact
688
688
  id: upload_artifact
689
- uses: actions/upload-artifact@v4
689
+ uses: actions/upload-artifact@v7
690
690
  with:
691
691
  name: ${{ steps.apk_filename.outputs.artifact_name }}
692
692
  path: |
@@ -699,7 +699,7 @@ EOF
699
699
  - name: Record artifact upload time
700
700
  id: artifact_time
701
701
  if: github.event_name == 'repository_dispatch' && needs.prepare-test-build.outputs.progress_comment_id != ''
702
- uses: actions/github-script@v7
702
+ uses: actions/github-script@v9
703
703
  with:
704
704
  script: |
705
705
  const step2EndTime = parseInt('${{ steps.progress_step2.outputs.end_time }}');
@@ -755,7 +755,7 @@ EOF
755
755
  - name: Record Firebase upload time
756
756
  id: firebase_time
757
757
  if: needs.prepare-test-build.outputs.firebase_available == 'true' && github.event_name == 'repository_dispatch' && needs.prepare-test-build.outputs.progress_comment_id != ''
758
- uses: actions/github-script@v7
758
+ uses: actions/github-script@v9
759
759
  with:
760
760
  script: |
761
761
  const artifactEndTime = parseInt('${{ steps.artifact_time.outputs.end_time }}');
@@ -769,7 +769,7 @@ EOF
769
769
  # 진행 상황 최종 업데이트 - 성공
770
770
  - name: 진행 상황 최종 업데이트 - 성공
771
771
  if: success() && github.event_name == 'repository_dispatch' && github.event.client_payload.pr_number != '' && needs.prepare-test-build.outputs.progress_comment_id != ''
772
- uses: actions/github-script@v7
772
+ uses: actions/github-script@v9
773
773
  with:
774
774
  github-token: ${{ secrets.GITHUB_TOKEN }}
775
775
  script: |
@@ -882,7 +882,7 @@ EOF
882
882
  # 진행 상황 최종 업데이트 - 실패
883
883
  - name: 진행 상황 최종 업데이트 - 실패
884
884
  if: failure() && github.event_name == 'repository_dispatch' && github.event.client_payload.pr_number != '' && needs.prepare-test-build.outputs.progress_comment_id != ''
885
- uses: actions/github-script@v7
885
+ uses: actions/github-script@v9
886
886
  with:
887
887
  github-token: ${{ secrets.GITHUB_TOKEN }}
888
888
  script: |
@@ -155,7 +155,7 @@ jobs:
155
155
  - name: 진행 상황 댓글 생성
156
156
  id: comment
157
157
  if: github.event_name == 'pull_request'
158
- uses: actions/github-script@v7
158
+ uses: actions/github-script@v9
159
159
  with:
160
160
  github-token: ${{ secrets.GITHUB_TOKEN }}
161
161
  script: |
@@ -238,13 +238,13 @@ jobs:
238
238
  steps:
239
239
  - name: 분석 시작 시간 기록
240
240
  id: analyze_start
241
- uses: actions/github-script@v7
241
+ uses: actions/github-script@v9
242
242
  with:
243
243
  script: |
244
244
  core.setOutput('time', Date.now().toString());
245
245
 
246
246
  - name: Checkout repository
247
- uses: actions/checkout@v5
247
+ uses: actions/checkout@v7
248
248
 
249
249
  # .env 파일 생성
250
250
  - name: Create .env file
@@ -268,7 +268,7 @@ jobs:
268
268
 
269
269
  # Flutter 캐시
270
270
  - name: Cache Flutter dependencies
271
- uses: actions/cache@v4
271
+ uses: actions/cache@v6
272
272
  with:
273
273
  path: ~/.pub-cache
274
274
  key: ${{ runner.os }}-flutter-pub-${{ hashFiles('**/pubspec.lock') }}
@@ -292,7 +292,7 @@ jobs:
292
292
  - name: 분석 결과 기록
293
293
  id: result
294
294
  if: always()
295
- uses: actions/github-script@v7
295
+ uses: actions/github-script@v9
296
296
  with:
297
297
  script: |
298
298
  const analyzeStart = parseInt('${{ steps.analyze_start.outputs.time }}');
@@ -326,13 +326,13 @@ jobs:
326
326
  steps:
327
327
  - name: 빌드 시작 시간 기록
328
328
  id: build_start
329
- uses: actions/github-script@v7
329
+ uses: actions/github-script@v9
330
330
  with:
331
331
  script: |
332
332
  core.setOutput('time', Date.now().toString());
333
333
 
334
334
  - name: Checkout repository
335
- uses: actions/checkout@v5
335
+ uses: actions/checkout@v7
336
336
 
337
337
  # .env 파일 생성
338
338
  - name: Create .env file
@@ -356,7 +356,7 @@ jobs:
356
356
 
357
357
  # Flutter 캐시
358
358
  - name: Cache Flutter dependencies
359
- uses: actions/cache@v4
359
+ uses: actions/cache@v6
360
360
  with:
361
361
  path: ~/.pub-cache
362
362
  key: ${{ runner.os }}-flutter-pub-${{ hashFiles('**/pubspec.lock') }}
@@ -364,7 +364,7 @@ jobs:
364
364
 
365
365
  # Gradle 캐시
366
366
  - name: Cache Gradle dependencies
367
- uses: actions/cache@v4
367
+ uses: actions/cache@v6
368
368
  with:
369
369
  path: |
370
370
  ~/.gradle/caches
@@ -381,7 +381,7 @@ jobs:
381
381
 
382
382
  # Java 설정
383
383
  - name: Set up Java
384
- uses: actions/setup-java@v4
384
+ uses: actions/setup-java@v5
385
385
  with:
386
386
  distribution: "temurin"
387
387
  java-version: ${{ env.JAVA_VERSION }}
@@ -411,7 +411,7 @@ jobs:
411
411
  - name: 빌드 결과 기록
412
412
  id: result
413
413
  if: always()
414
- uses: actions/github-script@v7
414
+ uses: actions/github-script@v9
415
415
  with:
416
416
  script: |
417
417
  const buildStart = parseInt('${{ steps.build_start.outputs.time }}');
@@ -445,13 +445,13 @@ jobs:
445
445
  steps:
446
446
  - name: 빌드 시작 시간 기록
447
447
  id: build_start
448
- uses: actions/github-script@v7
448
+ uses: actions/github-script@v9
449
449
  with:
450
450
  script: |
451
451
  core.setOutput('time', Date.now().toString());
452
452
 
453
453
  - name: Checkout repository
454
- uses: actions/checkout@v5
454
+ uses: actions/checkout@v7
455
455
 
456
456
  - name: Select Xcode version
457
457
  run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app/Contents/Developer
@@ -478,7 +478,7 @@ jobs:
478
478
 
479
479
  # Flutter 캐시
480
480
  - name: Cache Flutter dependencies
481
- uses: actions/cache@v4
481
+ uses: actions/cache@v6
482
482
  with:
483
483
  path: ~/.pub-cache
484
484
  key: ${{ runner.os }}-flutter-pub-${{ hashFiles('**/pubspec.lock') }}
@@ -515,7 +515,7 @@ jobs:
515
515
  - name: 빌드 결과 기록
516
516
  id: result
517
517
  if: always()
518
- uses: actions/github-script@v7
518
+ uses: actions/github-script@v9
519
519
  with:
520
520
  script: |
521
521
  const buildStart = parseInt('${{ steps.build_start.outputs.time }}');
@@ -542,7 +542,7 @@ jobs:
542
542
 
543
543
  steps:
544
544
  - name: 최종 결과 댓글 업데이트
545
- uses: actions/github-script@v7
545
+ uses: actions/github-script@v9
546
546
  with:
547
547
  github-token: ${{ secrets.GITHUB_TOKEN }}
548
548
  script: |