Skip to content

Commit 6262de0

Browse files
committed
Add .NET 9 hints
1 parent 0b6d5b7 commit 6262de0

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v1
1515
- name: Setup .NET Core
16-
uses: actions/setup-dotnet@v1
16+
uses: actions/setup-dotnet@v4
17+
with:
18+
dotnet-version: 9.0.x
1719
- name: Generate coverage report
1820
run: |
1921
dotnet test /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov /p:CoverageOutput=coverage.info

.github/workflows/dotnet-core.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Setup .NET Core
15-
uses: actions/setup-dotnet@v1
15+
uses: actions/setup-dotnet@v4
16+
with:
17+
dotnet-version: 9.0.x
1618
- name: Install dependencies
1719
run: dotnet restore
1820
- name: Build
@@ -26,7 +28,9 @@ jobs:
2628
steps:
2729
- uses: actions/checkout@v2
2830
- name: Setup .NET Core
29-
uses: actions/setup-dotnet@v1
31+
uses: actions/setup-dotnet@v4
32+
with:
33+
dotnet-version: 9.0.x
3034
- name: Install dependencies
3135
run: dotnet restore
3236
- name: Build

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
uses: actions/checkout@v1
3030

3131
- name: Setup dotnet
32-
uses: actions/setup-dotnet@v1
32+
uses: actions/setup-dotnet@v4
33+
with:
34+
dotnet-version: 9.0.x
3335
- name: Build
3436
shell: bash
3537
run: |

0 commit comments

Comments
 (0)