File tree Expand file tree Collapse file tree 5 files changed +28
-28
lines changed
Expand file tree Collapse file tree 5 files changed +28
-28
lines changed Original file line number Diff line number Diff line change 88 runs-on : windows-latest
99 steps :
1010 - name : Checkout
11- uses : actions/checkout@v2
11+ uses : actions/checkout@v4
1212 - name : Extract VERSION
1313 run : echo "VERSION=${GITHUB_REF/refs\/tags\/aspnet-extensions-v/}" >> $GITHUB_ENV
1414 shell : bash
1515 - name : Setup .NET Core 3.1 SDK
16- uses : actions/setup-dotnet@v1
16+ uses : actions/setup-dotnet@v4
1717 with :
1818 dotnet-version : ' 3.1.x'
1919 - name : Setup .NET 5.0 SDK
20- uses : actions/setup-dotnet@v1
20+ uses : actions/setup-dotnet@v4
2121 with :
2222 dotnet-version : ' 5.0.x'
2323 - name : Setup .NET 6.0 SDK
24- uses : actions/setup-dotnet@v1
24+ uses : actions/setup-dotnet@v4
2525 with :
2626 dotnet-version : ' 6.0.x'
2727 - name : Setup .NET 8.0 SDK
28- uses : actions/setup-dotnet@v1
28+ uses : actions/setup-dotnet@v4
2929 with :
3030 dotnet-version : ' 8.0.x'
3131 - name : Restore
Original file line number Diff line number Diff line change 88 runs-on : windows-latest
99 steps :
1010 - name : Checkout
11- uses : actions/checkout@v2
11+ uses : actions/checkout@v4
1212 - name : Extract VERSION
1313 run : echo "VERSION=${GITHUB_REF/refs\/tags\/azure-extensions-v/}" >> $GITHUB_ENV
1414 shell : bash
1515 - name : Setup .NET Core 3.1 SDK
16- uses : actions/setup-dotnet@v1
16+ uses : actions/setup-dotnet@v4
1717 with :
1818 dotnet-version : ' 3.1.x'
1919 - name : Setup .NET 5.0 SDK
20- uses : actions/setup-dotnet@v1
20+ uses : actions/setup-dotnet@v4
2121 with :
2222 dotnet-version : ' 5.0.x'
2323 - name : Setup .NET 6.0 SDK
24- uses : actions/setup-dotnet@v1
24+ uses : actions/setup-dotnet@v4
2525 with :
2626 dotnet-version : ' 6.0.x'
2727 - name : Setup .NET 8.0 SDK
28- uses : actions/setup-dotnet@v1
28+ uses : actions/setup-dotnet@v4
2929 with :
3030 dotnet-version : ' 8.0.x'
3131 - name : Restore
Original file line number Diff line number Diff line change 88 runs-on : windows-latest
99 steps :
1010 - name : Checkout
11- uses : actions/checkout@v2
11+ uses : actions/checkout@v4
1212 - name : Extract VERSION
1313 run : echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
1414 shell : bash
1515 - name : Setup .NET Core 3.1 SDK
16- uses : actions/setup-dotnet@v1
16+ uses : actions/setup-dotnet@v4
1717 with :
1818 dotnet-version : ' 3.1.x'
1919 - name : Setup .NET 5.0 SDK
20- uses : actions/setup-dotnet@v1
20+ uses : actions/setup-dotnet@v4
2121 with :
2222 dotnet-version : ' 5.0.x'
2323 - name : Setup .NET 6.0 SDK
24- uses : actions/setup-dotnet@v1
24+ uses : actions/setup-dotnet@v4
2525 with :
2626 dotnet-version : ' 6.0.x'
2727 - name : Setup .NET 8.0 SDK
28- uses : actions/setup-dotnet@v1
28+ uses : actions/setup-dotnet@v4
2929 with :
3030 dotnet-version : ' 8.0.x'
3131 - name : Restore
Original file line number Diff line number Diff line change @@ -11,21 +11,21 @@ jobs:
1111 runs-on : windows-latest
1212 steps :
1313 - name : Checkout
14- uses : actions/checkout@v2
14+ uses : actions/checkout@v4
1515 - name : Setup .NET Core 3.1 SDK
16- uses : actions/setup-dotnet@v1
16+ uses : actions/setup-dotnet@v4
1717 with :
1818 dotnet-version : ' 3.1.x'
1919 - name : Setup .NET 5.0 SDK
20- uses : actions/setup-dotnet@v1
20+ uses : actions/setup-dotnet@v4
2121 with :
2222 dotnet-version : ' 5.0.x'
2323 - name : Setup .NET 6.0 SDK
24- uses : actions/setup-dotnet@v1
24+ uses : actions/setup-dotnet@v4
2525 with :
2626 dotnet-version : ' 6.0.x'
2727 - name : Setup .NET 8.0 SDK
28- uses : actions/setup-dotnet@v1
28+ uses : actions/setup-dotnet@v4
2929 with :
3030 dotnet-version : ' 8.0.x'
3131 - name : Restore
Original file line number Diff line number Diff line change 55 runs-on : windows-latest
66 steps :
77 - name : Checkout
8- uses : actions/checkout@v2
8+ uses : actions/checkout@v4
99 - name : Setup .NET Core 3.1 SDK
10- uses : actions/setup-dotnet@v1
10+ uses : actions/setup-dotnet@v4
1111 with :
1212 dotnet-version : ' 3.1.x'
1313 - name : Setup .NET 5.0 SDK
14- uses : actions/setup-dotnet@v1
14+ uses : actions/setup-dotnet@v4
1515 with :
1616 dotnet-version : ' 5.0.x'
1717 - name : Setup .NET 6.0 SDK
18- uses : actions/setup-dotnet@v1
18+ uses : actions/setup-dotnet@v4
1919 with :
2020 dotnet-version : ' 6.0.x'
2121 - name : Setup .NET 8.0 SDK
22- uses : actions/setup-dotnet@v1
22+ uses : actions/setup-dotnet@v4
2323 with :
2424 dotnet-version : ' 8.0.x'
2525 - name : Restore
2626 run : dotnet restore
2727 - name : Build
2828 run : dotnet build --configuration Release --no-restore
2929 - name : Upload Artifacts
30- uses : actions/upload-artifact@v2
30+ uses : actions/upload-artifact@v4
3131 with :
3232 name : docfx
3333 path : docs/DocFx.Net.Http.WebPush/wwwroot
3737 runs-on : ubuntu-latest
3838 steps :
3939 - name : Checkout
40- uses : actions/checkout@v2
40+ uses : actions/checkout@v4
4141 - name : Download Artifacts
42- uses : actions/download-artifact@v2
42+ uses : actions/download-artifact@v4
4343 with :
4444 name : docfx
4545 path : docs/DocFx.Net.Http.WebPush/wwwroot
You can’t perform that action at this time.
0 commit comments