1818 - name : Set up Node.js
1919 uses : actions/setup-node@v2
2020 with :
21- node-version : " 22 "
21+ node-version : " 23 "
2222
2323 # 백엔드 의존성 캐시 설정
2424 - name : Cache Yarn dependencies for backend
3636
3737 # 백엔드 의존성 아티팩트 업로드
3838 - name : Save backend node_modules as artifact
39- uses : actions/upload-artifact@v2
39+ uses : actions/upload-artifact@v3 # Updated to v3
4040 with :
4141 name : backend_node_modules
4242 path : backend/node_modules
5050 - name : Set up Node.js
5151 uses : actions/setup-node@v2
5252 with :
53- node-version : " 16 "
53+ node-version : " 23 "
5454
5555 # 프론트엔드 의존성 캐시 설정
5656 - name : Cache Yarn dependencies for frontend
6868
6969 # 프론트엔드 의존성 아티팩트 업로드
7070 - name : Save frontend node_modules as artifact
71- uses : actions/upload-artifact@v2
71+ uses : actions/upload-artifact@v3 # Updated to v3
7272 with :
7373 name : frontend_node_modules
7474 path : frontend/node_modules
8282
8383 # 백엔드 의존성 아티팩트 다운로드
8484 - name : Restore backend node_modules
85- uses : actions/download-artifact@v2
85+ uses : actions/download-artifact@v3 # Updated to v3
8686 with :
8787 name : backend_node_modules
8888 path : backend/node_modules
@@ -107,7 +107,7 @@ jobs:
107107
108108 # 프론트엔드 의존성 아티팩트 다운로드
109109 - name : Restore frontend node_modules
110- uses : actions/download-artifact@v2
110+ uses : actions/download-artifact@v3 # Updated to v3
111111 with :
112112 name : frontend_node_modules
113113 path : frontend/node_modules
@@ -132,7 +132,7 @@ jobs:
132132
133133 # 백엔드 의존성 아티팩트 다운로드
134134 - name : Restore backend node_modules
135- uses : actions/download-artifact@v2
135+ uses : actions/download-artifact@v3 # Updated to v3
136136 with :
137137 name : backend_node_modules
138138 path : backend/node_modules
@@ -151,7 +151,7 @@ jobs:
151151
152152 # 프론트엔드 의존성 아티팩트 다운로드
153153 - name : Restore frontend node_modules
154- uses : actions/download-artifact@v2
154+ uses : actions/download-artifact@v3 # Updated to v3
155155 with :
156156 name : frontend_node_modules
157157 path : frontend/node_modules
@@ -170,7 +170,7 @@ jobs:
170170
171171 # 백엔드 의존성 아티팩트 다운로드
172172 - name : Restore backend node_modules
173- uses : actions/download-artifact@v2
173+ uses : actions/download-artifact@v3 # Updated to v3
174174 with :
175175 name : backend_node_modules
176176 path : backend/node_modules
0 commit comments