1717
1818 steps :
1919 - name : Checkout repo
20- uses : actions/checkout@v4
20+ uses : actions/checkout@v6
2121 with :
2222 fetch-depth : ${{ github.event_name == 'pull_request' && 2 || 0 }}
2323
@@ -152,7 +152,7 @@ jobs:
152152
153153 steps :
154154 - name : Checkout repo
155- uses : actions/checkout@v4
155+ uses : actions/checkout@v6
156156
157157 - name : Add msbuild to PATH
158158 uses : microsoft/setup-msbuild@v2
@@ -170,35 +170,35 @@ jobs:
170170
171171 - name : Archive artifacts for x64 / Release
172172 if : matrix.build_platform == 'x64' && matrix.build_configuration == 'Release'
173- uses : actions/upload-artifact@v4
173+ uses : actions/upload-artifact@v5
174174 with :
175175 name : Notepad++.MSVC.${{ matrix.build_platform}}.${{ matrix.build_configuration}}
176176 path : PowerEditor\bin64\Notepad++.exe
177177
178178 - name : Archive artifacts for Win32 / Release
179179 if : matrix.build_platform == 'Win32' && matrix.build_configuration == 'Release'
180- uses : actions/upload-artifact@v4
180+ uses : actions/upload-artifact@v5
181181 with :
182182 name : Notepad++.MSVC.${{ matrix.build_platform}}.${{ matrix.build_configuration}}
183183 path : PowerEditor\bin\Notepad++.exe
184184
185185 - name : Archive artifacts for ARM64 / Release
186186 if : matrix.build_platform == 'ARM64' && matrix.build_configuration == 'Release'
187- uses : actions/upload-artifact@v4
187+ uses : actions/upload-artifact@v5
188188 with :
189189 name : Notepad++.MSVC.${{ matrix.build_platform}}.${{ matrix.build_configuration}}
190190 path : PowerEditor\binarm64\Notepad++.exe
191191
192192 - name : Archive artifacts for ARM64|x64 / Debug
193193 if : (matrix.build_platform == 'ARM64' || matrix.build_platform == 'x64') && matrix.build_configuration == 'Debug'
194- uses : actions/upload-artifact@v4
194+ uses : actions/upload-artifact@v5
195195 with :
196196 name : Notepad++.MSVC.${{ matrix.build_platform}}.${{ matrix.build_configuration}}
197197 path : PowerEditor\visual.net\${{ matrix.build_platform}}\${{ matrix.build_configuration}}\Notepad++.exe
198198
199199 - name : Archive artifacts for Win32 / Debug
200200 if : matrix.build_platform == 'Win32' && matrix.build_configuration == 'Debug'
201- uses : actions/upload-artifact@v4
201+ uses : actions/upload-artifact@v5
202202 with :
203203 name : Notepad++.MSVC.${{ matrix.build_platform}}.${{ matrix.build_configuration}}
204204 path : PowerEditor\visual.net\${{ matrix.build_configuration}}\Notepad++.exe
@@ -257,7 +257,7 @@ jobs:
257257
258258 # steps:
259259 # - name: Checkout repo
260- # uses: actions/checkout@v4
260+ # uses: actions/checkout@v6
261261
262262 # - name: Add msbuild to PATH
263263 # uses: microsoft/setup-msbuild@v2
@@ -288,7 +288,7 @@ jobs:
288288
289289 steps :
290290 - name : Checkout repo
291- uses : actions/checkout@v4
291+ uses : actions/checkout@v6
292292
293293 - name : Add msbuild to PATH
294294 uses : microsoft/setup-msbuild@v2
@@ -341,7 +341,7 @@ jobs:
341341
342342 steps :
343343 - name : Checkout repo
344- uses : actions/checkout@v4
344+ uses : actions/checkout@v6
345345
346346 - name : Modify resource.h N++ version to avoid confusion
347347 working-directory : PowerEditor\src\
@@ -374,14 +374,14 @@ jobs:
374374
375375 - name : Archive artifacts for ${{ matrix.build_platform}} / Release
376376 if : matrix.build_configuration == 'Release'
377- uses : actions/upload-artifact@v4
377+ uses : actions/upload-artifact@v5
378378 with :
379379 name : Notepad++.GCC.${{ matrix.build_platform}}.${{ matrix.build_configuration}}
380380 path : bin.${{ matrix.build_platform}}\notepad++.exe
381381
382382 - name : Archive artifacts for ${{ matrix.build_platform}} / Debug
383383 if : matrix.build_configuration == 'Debug'
384- uses : actions/upload-artifact@v4
384+ uses : actions/upload-artifact@v5
385385 with :
386386 name : Notepad++.GCC.${{ matrix.build_platform}}.${{ matrix.build_configuration}}
387387 path : bin.${{ matrix.build_platform}}-debug\notepad++.exe
0 commit comments