Skip to content

Commit 778c406

Browse files
committed
Ensure we set up .NET 6 and .NET 8
1 parent fd0a507 commit 778c406

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/pull-request.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ jobs:
1515
submodules: true
1616

1717
- name: Setup .NET SDK
18-
uses: actions/setup-dotnet@v3
18+
uses: actions/setup-dotnet@v4
1919
with:
20-
dotnet-version: '6.0.x'
20+
dotnet-version: |
21+
6.0.x
22+
8.0.x
2123
2224
- name: Build and test
2325
run: |

.github/workflows/push.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ jobs:
1818
submodules: true
1919

2020
- name: Setup .NET SDK
21-
uses: actions/setup-dotnet@v3
21+
uses: actions/setup-dotnet@v4
2222
with:
23-
dotnet-version: '6.0.x'
23+
dotnet-version: |
24+
6.0.x
25+
8.0.x
2426
2527
- name: Build and test
2628
run: |

0 commit comments

Comments
 (0)