@@ -26,10 +26,10 @@ jobs:
2626 runs-on : windows-latest
2727
2828 steps :
29- - uses : actions/checkout@v2
29+ - uses : actions/checkout@v4
3030
3131 - name : Set up dotnet
32- uses : actions/setup-dotnet@v1
32+ uses : actions/setup-dotnet@v3
3333 with :
3434 dotnet-version : ${{ env.DOTNET_SDK_VERSION }}
3535 include-prerelease : true
@@ -38,13 +38,13 @@ jobs:
3838 - run : dotnet publish src/N_m3u8DL-RE -r win-arm64 -c Release -o artifact-arm64
3939
4040 - name : Upload Artifact[win-x64]
41- uses : actions/upload-artifact@v1.0.0
41+ uses : actions/upload-artifact@v3.1.3
4242 with :
4343 name : N_m3u8DL-RE_Beta_win-x64
4444 path : artifact-x64\N_m3u8DL-RE.exe
4545
4646 - name : Upload Artifact[win-arm64]
47- uses : actions/upload-artifact@v1.0.0
47+ uses : actions/upload-artifact@v3.1.3
4848 with :
4949 name : N_m3u8DL-RE_Beta_win-arm64
5050 path : artifact-arm64\N_m3u8DL-RE.exe
@@ -56,17 +56,17 @@ jobs:
5656 steps :
5757 - run : apt-get update
5858 - run : apt-get install -y curl wget
59- - uses : actions/checkout@v2
59+ - uses : actions/checkout@v4
6060 - name : Set up dotnet
61- uses : actions/setup-dotnet@v1
61+ uses : actions/setup-dotnet@v3
6262 with :
6363 dotnet-version : ${{ env.DOTNET_SDK_VERSION }}
6464 include-prerelease : true
6565 - run : apt-get install -y libicu-dev libcurl4-openssl-dev zlib1g-dev libkrb5-dev
6666 - run : dotnet publish src/N_m3u8DL-RE -r linux-x64 -c Release -o artifact
6767
6868 - name : Upload Artifact[linux-x64]
69- uses : actions/upload-artifact@v1.0.0
69+ uses : actions/upload-artifact@v3.1.3
7070 with :
7171 name : N_m3u8DL-RE_Beta_linux-x64
7272 path : artifact/N_m3u8DL-RE
@@ -76,16 +76,16 @@ jobs:
7676 container : mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-cross-arm64-20220312201346-b2c2436
7777
7878 steps :
79- - uses : actions/checkout@v2
79+ - uses : actions/checkout@v4
8080 - name : Set up dotnet
81- uses : actions/setup-dotnet@v1
81+ uses : actions/setup-dotnet@v3
8282 with :
8383 dotnet-version : ${{ env.DOTNET_SDK_VERSION }}
8484 include-prerelease : true
8585 - run : dotnet publish src/N_m3u8DL-RE -r linux-arm64 -c Release -p:StripSymbols=true -p:CppCompilerAndLinker=clang-9 -p:SysRoot=/crossrootfs/arm64 -o artifact
8686
8787 - name : Upload Artifact[linux-arm64]
88- uses : actions/upload-artifact@v1.0.0
88+ uses : actions/upload-artifact@v3.1.3
8989 with :
9090 name : N_m3u8DL-RE_Beta_linux-arm64
9191 path : artifact/N_m3u8DL-RE
@@ -94,23 +94,23 @@ jobs:
9494 runs-on : macos-latest
9595
9696 steps :
97- - uses : actions/checkout@v2
97+ - uses : actions/checkout@v4
9898
9999 - name : Set up dotnet
100- uses : actions/setup-dotnet@v1
100+ uses : actions/setup-dotnet@v3
101101 with :
102102 dotnet-version : ${{ env.DOTNET_SDK_VERSION }}
103103 include-prerelease : true
104104 - run : dotnet publish src/N_m3u8DL-RE -r osx-arm64 -c Release -o artifact-arm64
105105 - run : dotnet publish src/N_m3u8DL-RE -r osx-x64 -c Release -o artifact-x64
106106
107107 - name : Upload Artifact[osx-x64]
108- uses : actions/upload-artifact@v1.0.0
108+ uses : actions/upload-artifact@v3.1.3
109109 with :
110110 name : N_m3u8DL-RE_Beta_osx-x64
111111 path : artifact-x64/N_m3u8DL-RE
112112 - name : Upload Artifact[osx-arm64]
113- uses : actions/upload-artifact@v1.0.0
113+ uses : actions/upload-artifact@v3.1.3
114114 with :
115115 name : N_m3u8DL-RE_Beta_osx-arm64
116116 path : artifact-arm64/N_m3u8DL-RE
0 commit comments