This is an automated email from the ASF dual-hosted git repository.
blankensteiner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-dotpulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 696fd01 Moving to .NET 6
696fd01 is described below
commit 696fd018370c450d12737878278f89194ab982d9
Author: Daniel Blankensteiner <[email protected]>
AuthorDate: Fri Nov 12 12:52:50 2021 +0100
Moving to .NET 6
---
.github/workflows/ci-integration-test.yaml | 2 +-
.github/workflows/ci-unit.yaml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/ci-integration-test.yaml
b/.github/workflows/ci-integration-test.yaml
index 7fd8cda..1b442aa 100644
--- a/.github/workflows/ci-integration-test.yaml
+++ b/.github/workflows/ci-integration-test.yaml
@@ -37,7 +37,7 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
- dotnet-version: '5.0.x'
+ dotnet-version: '6.0.x'
- name: run integration tests
run: |
diff --git a/.github/workflows/ci-unit.yaml b/.github/workflows/ci-unit.yaml
index 58ee5c8..107f178 100644
--- a/.github/workflows/ci-unit.yaml
+++ b/.github/workflows/ci-unit.yaml
@@ -37,7 +37,7 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
- dotnet-version: '5.0.x'
+ dotnet-version: '6.0.x'
- name: run unit tests
run: dotnet test ./tests/DotPulsar.Tests/DotPulsar.Tests.csproj
--logger "trx;verbosity=detailed"