Skip to content

Commit 5743de6

Browse files
committed
[Build] Update deployment
1 parent 44496b4 commit 5743de6

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/deployment.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
environment: production
4343
steps:
4444
- name: Check out repository code
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v4
4646

4747
- name: Create WebBrowser Addons
4848
id: webaddons
@@ -69,13 +69,13 @@ jobs:
6969
print(f"Addon_Web_Extension_Firefox={ artifact_firefox }", file=f)
7070
7171
- name: Upload Chromium Addon
72-
uses: actions/upload-artifact@v3
72+
uses: actions/upload-artifact@v4
7373
with:
7474
name: artifact_chromium
7575
path: ${{ steps.webaddons.outputs.Addon_Web_Extension_Chromium }}
7676

7777
- name: Upload Firefox Addon
78-
uses: actions/upload-artifact@v3
78+
uses: actions/upload-artifact@v4
7979
with:
8080
name: artifact_firefox
8181
path: ${{ steps.webaddons.outputs.Addon_Web_Extension_Firefox }}
@@ -115,7 +115,7 @@ jobs:
115115

116116
steps:
117117
- name: Check out repository code
118-
uses: actions/checkout@v3
118+
uses: actions/checkout@v4
119119

120120
# - name: Clean Environment
121121
# shell: python # otherwise Windows uses Powershell, Linux uses bash
@@ -224,7 +224,7 @@ jobs:
224224
echo "LibtorrentRasterbar_VERSION: '${{env.LibtorrentRasterbar_VERSION}}'"
225225
226226
- name: Cache Libtorrent Static Libraries
227-
uses: actions/cache@v3
227+
uses: actions/cache@v4
228228
id: cache-libtorrent
229229
env:
230230
LibtorrentRasterbar_VERSION: ${{ steps.getversion.outputs.LibtorrentRasterbar_VERSION }}
@@ -473,7 +473,7 @@ jobs:
473473
474474
- name: Upload Linux Portable
475475
if: ${{ matrix.os == 'ubuntu-latest' }}
476-
uses: actions/upload-artifact@v3
476+
uses: actions/upload-artifact@v4
477477
env:
478478
TARBALL_NAME: "${{ steps.getversion.outputs.Application_Linux_NAME }}.tar.gz"
479479
with:
@@ -501,7 +501,7 @@ jobs:
501501
502502
- name: Upload Windows MingGW x64 Portable
503503
if: ${{ matrix.os == 'windows-latest' }}
504-
uses: actions/upload-artifact@v3
504+
uses: actions/upload-artifact@v4
505505
env:
506506
ZIP_NAME: "${{ steps.getversion.outputs.Application_Windows_MinGW_x64_NAME }}.zip"
507507
with:
@@ -534,7 +534,7 @@ jobs:
534534
535535
- name: Upload Windows 64 Installer
536536
if: ${{ matrix.os == 'windows-latest' }}
537-
uses: actions/upload-artifact@v3
537+
uses: actions/upload-artifact@v4
538538
with:
539539
name: artifact_windows_64_installer
540540
path: "${{env.Project_RELEASE_DIR}}/ArrowDL_x64_Setup.exe"
@@ -555,35 +555,35 @@ jobs:
555555
556556
- name: Download Chromium Addon
557557
continue-on-error: true
558-
uses: actions/download-artifact@v4.1.7
558+
uses: actions/download-artifact@v4
559559
with:
560560
name: artifact_chromium
561561
path: "${{env.Project_RELEASE_DIR}}"
562562

563563
- name: Download Firefox Addon
564564
continue-on-error: true
565-
uses: actions/download-artifact@v4.1.7
565+
uses: actions/download-artifact@v4
566566
with:
567567
name: artifact_firefox
568568
path: "${{env.Project_RELEASE_DIR}}"
569569

570570
- name: Download Linux Portable
571571
continue-on-error: true
572-
uses: actions/download-artifact@v4.1.7
572+
uses: actions/download-artifact@v4
573573
with:
574574
name: artifact_linux_portable
575575
path: "${{env.Project_RELEASE_DIR}}"
576576

577577
- name: Download Windows MinGW 64 Portable
578578
continue-on-error: true
579-
uses: actions/download-artifact@v4.1.7
579+
uses: actions/download-artifact@v4
580580
with:
581581
name: artifact_windows_mingw_64_portable
582582
path: "${{env.Project_RELEASE_DIR}}"
583583

584584
- name: Download Windows 64 Installer
585585
continue-on-error: true
586-
uses: actions/download-artifact@v4.1.7
586+
uses: actions/download-artifact@v4
587587
with:
588588
name: artifact_windows_64_installer
589589
path: "${{env.Project_RELEASE_DIR}}"

0 commit comments

Comments
 (0)