77 name : Build (Windows)
88 runs-on : windows-latest
99 steps :
10- - uses : actions/checkout@v2
11- - name : Setup .NET Core 3.1
12- uses : actions/setup-dotnet@v1
13- with :
14- dotnet-version : ' 3.1.x'
15- - name : Setup .NET 6.0
16- uses : actions/setup-dotnet@v1
17- with :
18- dotnet-version : ' 6.0.x'
10+ - uses : actions/checkout@v4
1911 - name : Setup .NET 8.0
2012 uses : actions/setup-dotnet@v1
2113 with :
3729 name : Build (Linux)
3830 runs-on : ubuntu-latest
3931 steps :
40- - uses : actions/checkout@v2
41- - name : Setup .NET Core 3.1
42- uses : actions/setup-dotnet@v1
43- with :
44- dotnet-version : ' 3.1.x'
45- - name : Setup .NET 6.0
46- uses : actions/setup-dotnet@v1
47- with :
48- dotnet-version : ' 6.0.x'
32+ - uses : actions/checkout@v4
4933 - name : Setup .NET 8.0
5034 uses : actions/setup-dotnet@v1
5135 with :
6751 name : Build (macOS)
6852 runs-on : macos-latest
6953 steps :
70- - uses : actions/checkout@v2
71- - name : Setup .NET Core 3.1
72- uses : actions/setup-dotnet@v1
73- with :
74- dotnet-version : ' 3.1.x'
75- - name : Setup .NET 6.0
76- uses : actions/setup-dotnet@v1
77- with :
78- dotnet-version : ' 6.0.x'
54+ - uses : actions/checkout@v4
7955 - name : Setup .NET 8.0
8056 uses : actions/setup-dotnet@v1
8157 with :
9874 runs-on : windows-latest
9975 needs : build-windows
10076 steps :
101- - uses : actions/checkout@v2
77+ - uses : actions/checkout@v4
10278 - name : Download packages
10379 uses : actions/download-artifact@v2
10480 with :
@@ -107,12 +83,6 @@ jobs:
10783 - name : Test (net462)
10884 run : ./make.ps1 -frameworks net462 test-all
10985 shell : pwsh
110- - name : Test (netcoreapp3.1)
111- run : ./make.ps1 -frameworks netcoreapp3.1 test-all
112- shell : pwsh
113- - name : Test (net6.0)
114- run : ./make.ps1 -frameworks net6.0 test-all
115- shell : pwsh
11686 - name : Test (net8.0)
11787 run : ./make.ps1 -frameworks net8.0 test-all
11888 shell : pwsh
12595 runs-on : ubuntu-latest
12696 needs : build-ubuntu
12797 steps :
128- - uses : actions/checkout@v2
98+ - uses : actions/checkout@v4
12999 - name : Download packages
130100 uses : actions/download-artifact@v2
131101 with :
@@ -134,12 +104,6 @@ jobs:
134104 - name : Test (net462)
135105 run : ./make.ps1 -frameworks net462 test-all
136106 shell : pwsh
137- - name : Test (netcoreapp3.1)
138- run : ./make.ps1 -frameworks netcoreapp3.1 test-all
139- shell : pwsh
140- - name : Test (net6.0)
141- run : ./make.ps1 -frameworks net6.0 test-all
142- shell : pwsh
143107 - name : Test (net8.0)
144108 run : ./make.ps1 -frameworks net8.0 test-all
145109 shell : pwsh
@@ -152,7 +116,7 @@ jobs:
152116 runs-on : macos-latest
153117 needs : build-macos
154118 steps :
155- - uses : actions/checkout@v2
119+ - uses : actions/checkout@v4
156120 - name : Download packages
157121 uses : actions/download-artifact@v2
158122 with :
@@ -161,12 +125,6 @@ jobs:
161125 - name : Test (net462)
162126 run : ./make.ps1 -frameworks net462 test-all
163127 shell : pwsh
164- - name : Test (netcoreapp3.1)
165- run : ./make.ps1 -frameworks netcoreapp3.1 test-all
166- shell : pwsh
167- - name : Test (net6.0)
168- run : ./make.ps1 -frameworks net6.0 test-all
169- shell : pwsh
170128 - name : Test (net8.0)
171129 run : ./make.ps1 -frameworks net8.0 test-all
172130 shell : pwsh
0 commit comments