Skip to content

Commit 7e7a68b

Browse files
committed
Update actions in release.yml workflow
1 parent 322f5f2 commit 7e7a68b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ jobs:
2828

2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v5
3232

3333
- name: Setup dotnet
34-
uses: actions/setup-dotnet@v3
34+
uses: actions/setup-dotnet@v5
3535
with:
3636
dotnet-version: '7.0.201'
3737

3838
- name: Setup MSBuild
39-
uses: microsoft/setup-msbuild@v1.1
39+
uses: microsoft/setup-msbuild@v2
4040

4141
- name: Cache dotnet tools
42-
uses: actions/cache@v3
42+
uses: actions/cache@v4
4343
id: cache-dotnettools
4444
with:
4545
path: ~/.dotnet/tools
@@ -54,7 +54,7 @@ jobs:
5454
run: dotnet tool install --verbosity minimal --global NuGetKeyVaultSignTool --version 3.2.2
5555

5656
- name: Cache packages
57-
uses: actions/cache@v3
57+
uses: actions/cache@v4
5858
with:
5959
path: ~/.nuget/packages
6060
key: NetOffice-nuget-${{ hashFiles('**/packages.lock.json') }}
@@ -93,7 +93,7 @@ jobs:
9393
timestamp-digest: SHA256
9494

9595
- name: Archive NetOffice binaries
96-
uses: actions/upload-artifact@v3
96+
uses: actions/upload-artifact@v5
9797
with:
9898
name: NetOffice_binaries_v${{ steps.build.outputs.app_version_full }}_${{ matrix.configuration }}
9999
path: '${{ github.workspace }}\Source\ClientApplication\bin\${{ matrix.configuration }}'
@@ -129,7 +129,7 @@ jobs:
129129

130130
- name: Archive NetOffice packages
131131
if: success() && steps.build.outputs.publish_nuget == 'true'
132-
uses: actions/upload-artifact@v3
132+
uses: actions/upload-artifact@v5
133133
with:
134134
name: NetOffice_packages_v${{ steps.build.outputs.app_version_full }}
135135
path: '${{ github.workspace }}\dist'

0 commit comments

Comments
 (0)