2020
2121 steps :
2222 - name : Checkout
23- uses : actions/checkout@v4
23+ uses : actions/checkout@v6
2424 with :
2525 fetch-depth : 0
2626
3030 dotnet-version : ${{ env.DOTNET_VERSION }}
3131
3232 - name : Cache NuGet packages
33- uses : actions/cache@v4
33+ uses : actions/cache@v5
3434 with :
3535 path : ${{ env.NUGET_PACKAGES }}
3636 key : ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props') }}
4444 run : dotnet build --configuration Release --no-restore
4545
4646 - name : Upload build artifacts
47- uses : actions/upload-artifact@v4
47+ uses : actions/upload-artifact@v6
4848 with :
4949 name : build-artifacts
5050 path : |
@@ -59,15 +59,15 @@ jobs:
5959
6060 steps :
6161 - name : Checkout
62- uses : actions/checkout@v4
62+ uses : actions/checkout@v6
6363
6464 - name : Setup .NET
6565 uses : actions/setup-dotnet@v4
6666 with :
6767 dotnet-version : ${{ env.DOTNET_VERSION }}
6868
6969 - name : Cache NuGet packages
70- uses : actions/cache@v4
70+ uses : actions/cache@v5
7171 with :
7272 path : ${{ env.NUGET_PACKAGES }}
7373 key : ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props') }}
8585 --results-directory ./TestResults
8686
8787 - name : Upload test results
88- uses : actions/upload-artifact@v4
88+ uses : actions/upload-artifact@v6
8989 if : always()
9090 with :
9191 name : test-results
@@ -104,7 +104,7 @@ jobs:
104104
105105 steps :
106106 - name : Checkout
107- uses : actions/checkout@v4
107+ uses : actions/checkout@v6
108108 with :
109109 fetch-depth : 0
110110
@@ -114,7 +114,7 @@ jobs:
114114 dotnet-version : ${{ env.DOTNET_VERSION }}
115115
116116 - name : Cache NuGet packages
117- uses : actions/cache@v4
117+ uses : actions/cache@v5
118118 with :
119119 path : ${{ env.NUGET_PACKAGES }}
120120 key : ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props') }}
@@ -158,14 +158,14 @@ jobs:
158158 -p:SymbolPackageFormat=snupkg
159159
160160 - name : Upload package artifacts
161- uses : actions/upload-artifact@v4
161+ uses : actions/upload-artifact@v6
162162 with :
163163 name : nuget-packages
164164 path : ./artifacts/*.nupkg
165165 retention-days : 30
166166
167167 - name : Upload symbol packages
168- uses : actions/upload-artifact@v4
168+ uses : actions/upload-artifact@v6
169169 with :
170170 name : nuget-symbols
171171 path : ./artifacts/*.snupkg
@@ -180,13 +180,13 @@ jobs:
180180
181181 steps :
182182 - name : Download package artifacts
183- uses : actions/download-artifact@v4
183+ uses : actions/download-artifact@v7
184184 with :
185185 name : nuget-packages
186186 path : ./artifacts
187187
188188 - name : Download symbol packages
189- uses : actions/download-artifact@v4
189+ uses : actions/download-artifact@v7
190190 with :
191191 name : nuget-symbols
192192 path : ./artifacts
0 commit comments