Skip to content

Commit c236810

Browse files
committed
Update GitHub Actions packages
1 parent 88613c2 commit c236810

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ jobs:
2121

2222
steps:
2323
- name: checkout
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
with:
2626
fetch-depth: 0
2727

2828
- name: setup dotnet
29-
uses: actions/setup-dotnet@v3
29+
uses: actions/setup-dotnet@v4
3030
with:
31-
dotnet-version: 6
31+
dotnet-version: 8
3232

3333
- name: setup msbuild
34-
uses: microsoft/setup-msbuild@v1
34+
uses: microsoft/setup-msbuild@v2
3535

3636
- name: build
3737
run: dotnet build -c ${{ env.Configuration }}
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: archive
4646
if: always()
47-
uses: actions/upload-artifact@v3
47+
uses: actions/upload-artifact@v4
4848
with:
49-
name: NetOfficeFw.Build-${{ env.VersionSuffix }}.nupkg
49+
name: NetOfficeFw.Build-${{ env.VersionSuffix }}.${{ matrix.configuration }}.nupkg
5050
path: dist/NetOfficeFw.Build.*.nupkg

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ jobs:
1515

1616
steps:
1717
- name: checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0
2121

2222
- name: setup dotnet
23-
uses: actions/setup-dotnet@v3
23+
uses: actions/setup-dotnet@v4
2424
with:
2525
dotnet-version: 6
2626

2727
- name: setup msbuild
28-
uses: microsoft/setup-msbuild@v1
28+
uses: microsoft/setup-msbuild@v2
2929

3030
- name: setup NuGetKeyVaultSignTool
3131
run: dotnet tool install --verbosity minimal --global NuGetKeyVaultSignTool --version 3.2.3

0 commit comments

Comments
 (0)