Skip to content

Commit 6026317

Browse files
committed
Fix gh workflows
1 parent 2d00958 commit 6026317

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ jobs:
3636
- name: setup dotnet
3737
uses: actions/setup-dotnet@v4
3838
with:
39-
dotnet-version: '8.0.x'
39+
dotnet-version: '9.0.x'
4040
- name: run tests
4141
run: dotnet test --logger "trx;verbosity=detailed"

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: setup dotnet
3535
uses: actions/setup-dotnet@v3
3636
with:
37-
dotnet-version: '8.0.x'
37+
dotnet-version: '9.0.x'
3838
- name: build
3939
run: dotnet build --configuration Debug
4040
- name: analyze

.github/workflows/publish-to-nuget.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: setup dotnet
3636
uses: actions/setup-dotnet@v4
3737
with:
38-
dotnet-version: '8.0.x'
38+
dotnet-version: '9.0.x'
3939
- name: create nuget packages
4040
run: dotnet pack -c release --include-symbols -o artifacts
4141
- name: publish to nuget.org

0 commit comments

Comments
 (0)