1515 with :
1616 submodules : true
1717 - name : Cache NuGet packages
18- uses : actions/cache@v3
18+ uses : actions/cache@v4
1919 with :
2020 path : |
2121 ~/.nuget/packages
3232 - name : Unit Tests
3333 run : dotnet test "${{ github.workspace }}\projects\Test\Unit\Unit.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
3434 - name : Upload Build (Debug)
35- uses : actions/upload-artifact@v3
35+ uses : actions/upload-artifact@v4
3636 with :
3737 name : rabbitmq-dotnet-client-build-win32
3838 path : |
@@ -52,14 +52,14 @@ jobs:
5252 with :
5353 submodules : true
5454 - name : Cache installers
55- uses : actions/cache@v3
55+ uses : actions/cache@v4
5656 with :
5757 # Note: the cache path is relative to the workspace directory
5858 # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#using-the-cache-action
5959 path : ~/installers
6060 key : ${{ runner.os }}-v0-${{ hashFiles('.ci/versions.json') }}
6161 - name : Download Build (Debug)
62- uses : actions/download-artifact@v3
62+ uses : actions/download-artifact@v4
6363 with :
6464 name : rabbitmq-dotnet-client-build-win32
6565 path : projects
8181 "${{ github.workspace }}\projects\Test\Integration\Integration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
8282 - name : Maybe upload RabbitMQ logs
8383 if : failure()
84- uses : actions/upload-artifact@v3
84+ uses : actions/upload-artifact@v4
8585 with :
8686 name : rabbitmq-logs-integration-win32
8787 path : ~/AppData/Roaming/RabbitMQ/log/
@@ -97,14 +97,14 @@ jobs:
9797 with :
9898 submodules : true
9999 - name : Cache installers
100- uses : actions/cache@v3
100+ uses : actions/cache@v4
101101 with :
102102 # Note: the cache path is relative to the workspace directory
103103 # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#using-the-cache-action
104104 path : ~/installers
105105 key : ${{ runner.os }}-v0-${{ hashFiles('.ci/versions.json') }}
106106 - name : Download Build (Debug)
107- uses : actions/download-artifact@v3
107+ uses : actions/download-artifact@v4
108108 with :
109109 name : rabbitmq-dotnet-client-build-win32
110110 path : projects
@@ -115,7 +115,7 @@ jobs:
115115 run : dotnet test --environment "RABBITMQ_RABBITMQCTL_PATH=${{ steps.install-start-rabbitmq.outputs.path }}" "${{ github.workspace }}\projects\Test\SequentialIntegration\SequentialIntegration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
116116 - name : Maybe upload RabbitMQ logs
117117 if : failure()
118- uses : actions/upload-artifact@v3
118+ uses : actions/upload-artifact@v4
119119 with :
120120 name : rabbitmq-logs-sequential-integration-win32
121121 path : ~/AppData/Roaming/RabbitMQ/log/
@@ -128,11 +128,11 @@ jobs:
128128 with :
129129 submodules : true
130130 - name : Setup .NET
131- uses : actions/setup-dotnet@v3
131+ uses : actions/setup-dotnet@v4
132132 with :
133133 dotnet-version : 6.x
134134 - name : Cache NuGet packages
135- uses : actions/cache@v3
135+ uses : actions/cache@v4
136136 with :
137137 path : |
138138 ~/.nuget/packages
@@ -149,7 +149,7 @@ jobs:
149149 - name : Unit Tests
150150 run : dotnet test "${{ github.workspace }}/projects/Test/Unit/Unit.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
151151 - name : Upload Build (Debug)
152- uses : actions/upload-artifact@v3
152+ uses : actions/upload-artifact@v4
153153 with :
154154 name : rabbitmq-dotnet-client-build-ubuntu
155155 path : |
@@ -166,11 +166,11 @@ jobs:
166166 with :
167167 submodules : true
168168 - name : Setup .NET
169- uses : actions/setup-dotnet@v3
169+ uses : actions/setup-dotnet@v4
170170 with :
171171 dotnet-version : 6.x
172172 - name : Download Build (Debug)
173- uses : actions/download-artifact@v3
173+ uses : actions/download-artifact@v4
174174 with :
175175 name : rabbitmq-dotnet-client-build-ubuntu
176176 path : projects
@@ -188,7 +188,7 @@ jobs:
188188 "${{ github.workspace }}/projects/Test/Integration/Integration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
189189 - name : Maybe upload RabbitMQ logs
190190 if : failure()
191- uses : actions/upload-artifact@v3
191+ uses : actions/upload-artifact@v4
192192 with :
193193 name : rabbitmq-logs-integration-ubuntu
194194 path : ${{ github.workspace }}/.ci/ubuntu/log/
@@ -201,11 +201,11 @@ jobs:
201201 with :
202202 submodules : true
203203 - name : Setup .NET
204- uses : actions/setup-dotnet@v3
204+ uses : actions/setup-dotnet@v4
205205 with :
206206 dotnet-version : 6.x
207207 - name : Download Build (Debug)
208- uses : actions/download-artifact@v3
208+ uses : actions/download-artifact@v4
209209 with :
210210 name : rabbitmq-dotnet-client-build-ubuntu
211211 path : projects
@@ -219,7 +219,7 @@ jobs:
219219 "${{ github.workspace }}/projects/Test/SequentialIntegration/SequentialIntegration.csproj" --no-restore --no-build --logger 'console;verbosity=detailed'
220220 - name : Maybe upload RabbitMQ logs
221221 if : failure()
222- uses : actions/upload-artifact@v3
222+ uses : actions/upload-artifact@v4
223223 with :
224224 name : rabbitmq-logs-sequential-integration-ubuntu
225225 path : ${{ github.workspace }}/.ci/ubuntu/log/
0 commit comments