Skip to content

Commit d4d142e

Browse files
Bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f80ec5e commit d4d142e

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

.github/workflows/cd.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- name: upload binary
5959
id: upload-binary
6060
if: github.event_name == 'push'
61-
uses: actions/upload-artifact@v5
61+
uses: actions/upload-artifact@v6
6262
with:
6363
name: texstudio-exe
6464
path: build/texstudio.exe
@@ -125,15 +125,15 @@ jobs:
125125
126126
- name: Upload zip to GitHub Artifacts
127127
if: github.event_name == 'push'
128-
uses: actions/upload-artifact@v5
128+
uses: actions/upload-artifact@v6
129129
with:
130130
name: texstudio-win-qt6-zip
131131
path: ./build/package-zip/texstudio-win-qt6-${{ steps.package.outputs.VERSION_NAME }}.zip
132132

133133
- name: Upload to GitHub Artifacts
134134
id: upload-artifact
135135
if: github.event_name == 'push'
136-
uses: actions/upload-artifact@v5
136+
uses: actions/upload-artifact@v6
137137
with:
138138
name: texstudio-win-qt6-exe
139139
path: texstudio-win-qt6-${{ steps.package.outputs.VERSION_NAME }}.exe
@@ -165,13 +165,13 @@ jobs:
165165
- name: Upload signed installer to GitHub Artifacts
166166
id: upload-artifact-signed
167167
if: env.IF_CODESIGN == 'true' && github.event_name == 'push'
168-
uses: actions/upload-artifact@v5
168+
uses: actions/upload-artifact@v6
169169
with:
170170
name: texstudio-win-qt6-signed-exe
171171
path: signed-artifacts/texstudio-win-qt6-${{ steps.package.outputs.VERSION_NAME }}.exe
172172

173173
- name: Upload release file(s)
174-
uses: actions/upload-artifact@v5
174+
uses: actions/upload-artifact@v6
175175
if: startsWith(github.ref, 'refs/tags/')
176176
with:
177177
name: release-win
@@ -230,7 +230,7 @@ jobs:
230230
- name: upload binary
231231
id: upload-binary
232232
if: github.event_name == 'push'
233-
uses: actions/upload-artifact@v5
233+
uses: actions/upload-artifact@v6
234234
with:
235235
name: texstudio-arm-exe
236236
path: build/texstudio.exe
@@ -297,15 +297,15 @@ jobs:
297297
298298
- name: Upload zip to GitHub Artifacts
299299
if: github.event_name == 'push'
300-
uses: actions/upload-artifact@v5
300+
uses: actions/upload-artifact@v6
301301
with:
302302
name: texstudio-win-arm-qt6-zip
303303
path: ./build/package-zip/texstudio-win-qt6-${{ steps.package.outputs.VERSION_NAME }}.zip
304304

305305
- name: Upload to GitHub Artifacts
306306
id: upload-artifact
307307
if: github.event_name == 'push'
308-
uses: actions/upload-artifact@v5
308+
uses: actions/upload-artifact@v6
309309
with:
310310
name: texstudio-win-arm-qt6-exe
311311
path: texstudio-win-qt6-${{ steps.package.outputs.VERSION_NAME }}.exe
@@ -337,13 +337,13 @@ jobs:
337337
- name: Upload signed installer to GitHub Artifacts
338338
id: upload-artifact-signed
339339
if: env.IF_CODESIGN == 'true' && github.event_name == 'push'
340-
uses: actions/upload-artifact@v5
340+
uses: actions/upload-artifact@v6
341341
with:
342342
name: texstudio-win-arm-qt6-signed-exe
343343
path: signed-artifacts/texstudio-win-qt6-${{ steps.package.outputs.VERSION_NAME }}.exe
344344

345345
- name: Upload release file(s)
346-
uses: actions/upload-artifact@v5
346+
uses: actions/upload-artifact@v6
347347
if: startsWith(github.ref, 'refs/tags/')
348348
with:
349349
name: release-win-arm
@@ -402,13 +402,13 @@ jobs:
402402
403403
- name: Upload to Github Artifacts
404404
if: github.event_name == 'push'
405-
uses: actions/upload-artifact@v5
405+
uses: actions/upload-artifact@v6
406406
with:
407407
name: texstudio-linux
408408
path: texstudio-linux-${{ steps.package.outputs.VERSION_NAME }}-x86_64.AppImage
409409

410410
- name: Upload release file(s)
411-
uses: actions/upload-artifact@v5
411+
uses: actions/upload-artifact@v6
412412
if: startsWith(github.ref, 'refs/tags/')
413413
with:
414414
name: release-linux
@@ -504,14 +504,14 @@ jobs:
504504
505505
- name: Upload to Github artifacts
506506
if: github.event_name == 'push'
507-
uses: actions/upload-artifact@v5
507+
uses: actions/upload-artifact@v6
508508
with:
509509
name: texstudio-osx
510510
path: app
511511
# path: texstudio-osx-m1-${{ steps.package.outputs.VERSION_NAME }}.zip
512512

513513
- name: Upload release file(s)
514-
uses: actions/upload-artifact@v5
514+
uses: actions/upload-artifact@v6
515515
if: startsWith(github.ref, 'refs/tags/')
516516
with:
517517
name: release-osx
@@ -605,14 +605,14 @@ jobs:
605605
606606
- name: Upload to Github artifacts
607607
if: github.event_name == 'push'
608-
uses: actions/upload-artifact@v5
608+
uses: actions/upload-artifact@v6
609609
with:
610610
name: texstudio-osx-m1
611611
path: app
612612
# path: texstudio-osx-m1-${{ steps.package.outputs.VERSION_NAME }}.zip
613613

614614
- name: Upload release file(s)
615-
uses: actions/upload-artifact@v5
615+
uses: actions/upload-artifact@v6
616616
if: startsWith(github.ref, 'refs/tags/')
617617
with:
618618
name: release-osx-m1

0 commit comments

Comments
 (0)