3535 create-nuget :
3636 runs-on : ubuntu-latest
3737 steps :
38- - uses : actions/checkout@v5
38+ - uses : actions/checkout@v6
3939 with :
4040 fetch-depth : 0 # Get all history to allow automatic versioning using MinVer
4141
7777 dotnet pack src/bunit.generators/ -c release --output ${{ env.NUGET_DIRECTORY }} -p:ContinuousIntegrationBuild=true -p:publicrelease=true
7878
7979 # Publish the NuGet package as an artifact, so they can be used in the following jobs
80- - uses : actions/upload-artifact@v4
80+ - uses : actions/upload-artifact@v5
8181 with :
8282 name : ${{ env.NUGET_PACKAGES_ARTIFACT }}
8383 if-no-files-found : error
9292 - name : Setup .NET
9393 uses : actions/setup-dotnet@v5
9494
95- - uses : actions/download-artifact@v5
95+ - uses : actions/download-artifact@v6
9696 with :
9797 name : ${{ env.NUGET_PACKAGES_ARTIFACT }}
9898 path : ${{ env.NUGET_DIRECTORY }}
@@ -117,7 +117,7 @@ jobs:
117117
118118 steps :
119119 - name : 🛒 Checkout repository
120- uses : actions/checkout@v5
120+ uses : actions/checkout@v6
121121 with :
122122 fetch-depth : 0
123123
@@ -139,7 +139,7 @@ jobs:
139139
140140 - name : 📛 Upload hang- and crash-dumps on test failure
141141 if : success() || failure()
142- uses : actions/upload-artifact@v4
142+ uses : actions/upload-artifact@v5
143143 with :
144144 if-no-files-found : ignore
145145 name : test-dumps
@@ -151,7 +151,7 @@ jobs:
151151 runs-on : ubuntu-latest
152152 needs : [ create-nuget ]
153153 steps :
154- - uses : actions/checkout@v5
154+ - uses : actions/checkout@v6
155155 with :
156156 fetch-depth : 0 # Get all history to allow automatic versioning using MinVer
157157
@@ -161,7 +161,7 @@ jobs:
161161 dotnet-version : |
162162 9.0.x
163163
164- - uses : actions/download-artifact@v5
164+ - uses : actions/download-artifact@v6
165165 with :
166166 name : ${{ env.NUGET_PACKAGES_ARTIFACT }}
167167 path : ${{ env.NUGET_DIRECTORY }}
@@ -211,7 +211,7 @@ jobs:
211211 runs-on : ubuntu-latest
212212 steps :
213213 - name : 🛒 Checkout repository
214- uses : actions/checkout@v5
214+ uses : actions/checkout@v6
215215 with :
216216 fetch-depth : 0
217217
@@ -264,7 +264,7 @@ jobs:
264264 if : github.event_name == 'pull_request' && github.repository_owner == 'bunit-dev'
265265 steps :
266266 - name : ' Checkout Repository'
267- uses : actions/checkout@v5
267+ uses : actions/checkout@v6
268268 - name : ' Dependency Review'
269269 uses : actions/dependency-review-action@v4
270270
@@ -275,7 +275,7 @@ jobs:
275275 permissions :
276276 id-token : write
277277 steps :
278- - uses : actions/download-artifact@v5
278+ - uses : actions/download-artifact@v6
279279 with :
280280 name : ${{ env.NUGET_PACKAGES_ARTIFACT }}
281281 path : ${{ env.NUGET_DIRECTORY }}
0 commit comments