3434
3535 steps :
3636 - name : Checkout
37- uses : actions/checkout@v5
37+ uses : actions/checkout@v6
3838
3939 - name : Setup dotnet
4040 uses : actions/setup-dotnet@v5
4545 uses : microsoft/setup-msbuild@v2
4646
4747 - name : Cache dotnet tools
48- uses : actions/cache@v4
48+ uses : actions/cache@v5
4949 id : cache-dotnettools
5050 with :
5151 path : ~/.dotnet/tools
6060 run : dotnet tool install --verbosity minimal --global Knapcode.CertificateExtractor --version 0.1.1
6161
6262 - name : Cache packages
63- uses : actions/cache@v4
63+ uses : actions/cache@v5
6464 with :
6565 path : ~/.nuget/packages
6666 key : NetOffice-nuget-${{ hashFiles('**/packages.lock.json') }}
@@ -118,7 +118,7 @@ jobs:
118118 timestamp-digest : SHA256
119119
120120 - name : Archive NetOffice binaries
121- uses : actions/upload-artifact@v5
121+ uses : actions/upload-artifact@v6
122122 with :
123123 name : NetOffice_binaries_v${{ steps.build.outputs.app_version_full }}_${{ matrix.configuration }}
124124 path : ' ${{ github.workspace }}\Source\ClientApplication\bin\${{ matrix.configuration }}'
@@ -152,14 +152,14 @@ jobs:
152152
153153 - name : Archive NetOffice packages
154154 if : success()
155- uses : actions/upload-artifact@v5
155+ uses : actions/upload-artifact@v6
156156 with :
157157 name : ${{ steps.build.outputs.nuget_packages_artifact_name }}
158158 path : ' ${{ github.workspace }}\dist'
159159
160160 - name : Archive code signing certificate
161161 if : success() && matrix.configuration == 'Release'
162- uses : actions/upload-artifact@v5
162+ uses : actions/upload-artifact@v6
163163 with :
164164 name : certificate
165165 path : ' ${{ github.workspace }}/dist/*.cer'
@@ -184,7 +184,7 @@ jobs:
184184
185185 steps :
186186 - name : Download NetOffice packages
187- uses : actions/download-artifact@v5
187+ uses : actions/download-artifact@v7
188188 with :
189189 name : ${{ needs.release.outputs.nuget_packages_artifact_name }}
190190
0 commit comments