Skip to content

Commit 4f9b313

Browse files
committed
Install dotnet 9
1 parent c162395 commit 4f9b313

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/publish.yml

+5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
- name: Checkout
2121
uses: actions/checkout@v2
2222

23+
- name: Setup dotnet
24+
uses: actions/setup-dotnet@v4
25+
with:
26+
dotnet-version: '9.x'
27+
2328
- name: Verify commit
2429
run: |
2530
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*

.github/workflows/tests.yml

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v2
1717

18+
- name: Setup dotnet
19+
uses: actions/setup-dotnet@v4
20+
with:
21+
dotnet-version: '9.x'
22+
1823
- name: Install dependencies
1924
run: dotnet restore
2025

0 commit comments

Comments
 (0)