@@ -23,13 +23,13 @@ jobs:
2323 steps :
2424 # 检出您的主仓库代码
2525 - name : Checkout main repository code
26- uses : actions/checkout@v4
26+ uses : actions/checkout@v6
2727 with :
2828 ref : ' develop'
2929
3030 # 检出依赖的xengine仓库到指定的xengine目录
3131 - name : Checkout dependency repository (xengine)
32- uses : actions/checkout@v4
32+ uses : actions/checkout@v6
3333 with :
3434 repository : libxengine/libxengine
3535 path : libxengine
4141 shell : pwsh
4242
4343 - name : vcpkg dependency repository
44- uses : actions/checkout@v4
44+ uses : actions/checkout@v6
4545 with :
4646 repository : microsoft/vcpkg
4747 path : vcpkg
@@ -114,7 +114,7 @@ jobs:
114114
115115 # 配置 MSBuild 的路径,准备构建 VC++ 项目
116116 - name : Setup MSBuild
117- uses : microsoft/setup-msbuild@v2
117+ uses : microsoft/setup-msbuild@v3
118118
119119 # 编译
120120 - name : Build Solution
@@ -155,22 +155,22 @@ jobs:
155155
156156 - name : Upload folder as artifact with x86
157157 if : matrix.configuration == 'Release' && matrix.platform == 'x64'
158- uses : actions/upload-artifact@v4
158+ uses : actions/upload-artifact@v7
159159 with :
160160 name : XEngine_APIServiceApp-Windows_x86_32
161161 path : XEngine_Release/
162162 retention-days : 1
163163
164164 - name : Upload folder as artifact with x64
165165 if : matrix.configuration == 'Release' && matrix.platform == 'x64'
166- uses : actions/upload-artifact@v4
166+ uses : actions/upload-artifact@v7
167167 with :
168168 name : XEngine_APIServiceApp-Windows_x86_64
169169 path : XEngine_Release/
170170 retention-days : 1
171171 - name : Upload folder as artifact with ARM64
172172 if : matrix.configuration == 'Release' && matrix.platform == 'ARM64'
173- uses : actions/upload-artifact@v4
173+ uses : actions/upload-artifact@v7
174174 with :
175175 name : XEngine_APIServiceApp-Windows_Arm64
176176 path : XEngine_Release/
0 commit comments