42
42
environment : production
43
43
steps :
44
44
- name : Check out repository code
45
- uses : actions/checkout@v3
45
+ uses : actions/checkout@v4
46
46
47
47
- name : Create WebBrowser Addons
48
48
id : webaddons
@@ -69,13 +69,13 @@ jobs:
69
69
print(f"Addon_Web_Extension_Firefox={ artifact_firefox }", file=f)
70
70
71
71
- name : Upload Chromium Addon
72
- uses : actions/upload-artifact@v3
72
+ uses : actions/upload-artifact@v4
73
73
with :
74
74
name : artifact_chromium
75
75
path : ${{ steps.webaddons.outputs.Addon_Web_Extension_Chromium }}
76
76
77
77
- name : Upload Firefox Addon
78
- uses : actions/upload-artifact@v3
78
+ uses : actions/upload-artifact@v4
79
79
with :
80
80
name : artifact_firefox
81
81
path : ${{ steps.webaddons.outputs.Addon_Web_Extension_Firefox }}
@@ -115,7 +115,7 @@ jobs:
115
115
116
116
steps :
117
117
- name : Check out repository code
118
- uses : actions/checkout@v3
118
+ uses : actions/checkout@v4
119
119
120
120
# - name: Clean Environment
121
121
# shell: python # otherwise Windows uses Powershell, Linux uses bash
@@ -224,7 +224,7 @@ jobs:
224
224
echo "LibtorrentRasterbar_VERSION: '${{env.LibtorrentRasterbar_VERSION}}'"
225
225
226
226
- name : Cache Libtorrent Static Libraries
227
- uses : actions/cache@v3
227
+ uses : actions/cache@v4
228
228
id : cache-libtorrent
229
229
env :
230
230
LibtorrentRasterbar_VERSION : ${{ steps.getversion.outputs.LibtorrentRasterbar_VERSION }}
@@ -473,7 +473,7 @@ jobs:
473
473
474
474
- name : Upload Linux Portable
475
475
if : ${{ matrix.os == 'ubuntu-latest' }}
476
- uses : actions/upload-artifact@v3
476
+ uses : actions/upload-artifact@v4
477
477
env :
478
478
TARBALL_NAME : " ${{ steps.getversion.outputs.Application_Linux_NAME }}.tar.gz"
479
479
with :
@@ -501,7 +501,7 @@ jobs:
501
501
502
502
- name : Upload Windows MingGW x64 Portable
503
503
if : ${{ matrix.os == 'windows-latest' }}
504
- uses : actions/upload-artifact@v3
504
+ uses : actions/upload-artifact@v4
505
505
env :
506
506
ZIP_NAME : " ${{ steps.getversion.outputs.Application_Windows_MinGW_x64_NAME }}.zip"
507
507
with :
@@ -534,7 +534,7 @@ jobs:
534
534
535
535
- name : Upload Windows 64 Installer
536
536
if : ${{ matrix.os == 'windows-latest' }}
537
- uses : actions/upload-artifact@v3
537
+ uses : actions/upload-artifact@v4
538
538
with :
539
539
name : artifact_windows_64_installer
540
540
path : " ${{env.Project_RELEASE_DIR}}/ArrowDL_x64_Setup.exe"
@@ -555,35 +555,35 @@ jobs:
555
555
556
556
- name : Download Chromium Addon
557
557
continue-on-error : true
558
- uses : actions/download-artifact@v4.1.7
558
+ uses : actions/download-artifact@v4
559
559
with :
560
560
name : artifact_chromium
561
561
path : " ${{env.Project_RELEASE_DIR}}"
562
562
563
563
- name : Download Firefox Addon
564
564
continue-on-error : true
565
- uses : actions/download-artifact@v4.1.7
565
+ uses : actions/download-artifact@v4
566
566
with :
567
567
name : artifact_firefox
568
568
path : " ${{env.Project_RELEASE_DIR}}"
569
569
570
570
- name : Download Linux Portable
571
571
continue-on-error : true
572
- uses : actions/download-artifact@v4.1.7
572
+ uses : actions/download-artifact@v4
573
573
with :
574
574
name : artifact_linux_portable
575
575
path : " ${{env.Project_RELEASE_DIR}}"
576
576
577
577
- name : Download Windows MinGW 64 Portable
578
578
continue-on-error : true
579
- uses : actions/download-artifact@v4.1.7
579
+ uses : actions/download-artifact@v4
580
580
with :
581
581
name : artifact_windows_mingw_64_portable
582
582
path : " ${{env.Project_RELEASE_DIR}}"
583
583
584
584
- name : Download Windows 64 Installer
585
585
continue-on-error : true
586
- uses : actions/download-artifact@v4.1.7
586
+ uses : actions/download-artifact@v4
587
587
with :
588
588
name : artifact_windows_64_installer
589
589
path : " ${{env.Project_RELEASE_DIR}}"
0 commit comments