⬆️ Pages 배포 액션 3종을 Node 24 버전으로 올림 - #51
Merged
Merged
Conversation
앞선 변경에서 여기만 남겼습니다. upload-artifact가 deploy-pages와 짝을 이뤄 도는 자리라 한쪽만 올리면 배포가 깨질 수 있고, 대시보드가 안 뜨는 것은 즉시 눈에 보이는 사고이기 때문입니다. 셋을 함께 올립니다. - actions/configure-pages v5 → v6 - actions/upload-artifact v4 → v7 - actions/deploy-pages v4 → v5 각 태그의 action.yml에서 runs.using이 node24인지 직접 확인했고, 우리가 쓰는 접점도 그대로인 것을 확인했습니다 — deploy-pages의 page_url 출력, artifact_name 기본값 github-pages, upload-artifact의 name·path·overwrite· retention-days·if-no-files-found 입력. 가드 테스트의 예외를 걷어내고 Pages 3종도 고정 대상에 넣었습니다. deploy-pages를 v4로 되돌려 실제로 실패하는 것을 확인했습니다. 이제 우리 워크플로에 Node 20으로 도는 액션이 없습니다. 1112 passed, 2 skipped. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01RgLYqM9puPW1aqHTccbX69
Kevinlee7250
marked this pull request as ready for review
August 26, 2026 12:01
Uh oh!
There was an error while loading. Please reload this page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
배경
PR #50에서 우리 워크플로의 Node 20 액션을 올리면서 여기만 남겼습니다.
upload-artifact가deploy-pages와 짝을 이뤄 도는 자리라 한쪽만 올리면 배포가 깨질 수 있고, 대시보드가 안 뜨는 것은 즉시 눈에 보이는 사고이기 때문입니다. 셋을 함께 올립니다.변경 —
deploy-dashboard.ymlactions/configure-pagesactions/upload-artifactactions/deploy-pages각 태그의
action.yml에서runs.using이node24인지 직접 확인했습니다. 우리가 실제로 의존하는 접점도 그대로인 것을 확인했습니다:deploy-pages의page_url출력 (environment.url에서 씀) — 유지deploy-pages의artifact_name기본값github-pages— 유지upload-artifact의name·path·overwrite·retention-days·if-no-files-found— 모두 유지configure-pages는 출력을 쓰지 않고 설정 목적으로만 호출가드
test_action_runtimes의 예외(_EXEMPT)를 걷어내고 Pages 3종도 고정 대상에 넣었습니다.deploy-pages를 v4로 되돌리자test_no_node20_actions[deploy-dashboard.yml]이 실패했고, 복원 후 통과했습니다.이 PR이 머지되면 우리 워크플로에 Node 20으로 도는 액션이 없습니다.
검증
1112 passed, 2 skipped머지 후 수동 배포를 걸어 대시보드가 실제로 서빙되는지 확인하겠습니다 — 이 변경은 배포가 실제로 도는 것으로만 검증됩니다.
Generated by Claude Code