Skip to content

Commit 5fa283a

Browse files
update workflows
1 parent 5040b17 commit 5fa283a

File tree

2 files changed

+3
-19
lines changed

2 files changed

+3
-19
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
21-
22-
- name: Install .NET SDKs
23-
uses: actions/setup-dotnet@v4
24-
with:
25-
dotnet-version: |
26-
6.0.x
27-
8.0.x
28-
9.0.x
20+
uses: actions/checkout@v5
2921

3022
- name: Restore
3123
run: dotnet restore --nologo

.github/workflows/release.yaml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
17-
18-
- name: Install .NET SDKs
19-
uses: actions/setup-dotnet@v4
20-
with:
21-
dotnet-version: |
22-
6.0.x
23-
8.0.x
24-
9.0.x
16+
uses: actions/checkout@v5
2517

2618
- name: Restore
2719
run: dotnet restore --nologo
@@ -42,7 +34,7 @@ jobs:
4234
run: dotnet nuget push -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} **/*.nupkg
4335

4436
- name: Archive Artifacts
45-
uses: actions/upload-artifact@v4
37+
uses: actions/upload-artifact@v5
4638
with:
4739
name: nuget-packages
4840
path: src/**/Release/*.*nupkg

0 commit comments

Comments
 (0)