From 0d6a77ea746e3b1da468a84906acf8fd61bafe21 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Wed, 13 Sep 2023 12:51:12 -0700 Subject: [PATCH] fix: Bumps PollGroup to fix NPE error (#1497) --- .github/workflows/build-test.yml | 4 +++- .github/workflows/create-release.yml | 2 +- Projects/Server/Server.csproj | 2 +- azure-pipelines.yml | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 3c83b946a..c23cf2521 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -16,6 +16,8 @@ jobs: include: - os: macos-12 name: MacOS 12 + - os: macos-13 + name: MacOS 13 steps: - uses: actions/checkout@v3 @@ -24,7 +26,7 @@ jobs: - name: Setup .NET 7 uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.400 + dotnet-version: 7.0.401 - name: Build run: ./publish.cmd Release - name: Migration Changes diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index bab7c56c1..ac208a249 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -17,7 +17,7 @@ jobs: - name: Setup .NET 7 uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.400 + dotnet-version: 7.0.401 - name: Install NGBV uses: dotnet/nbgv@master id: nbgv diff --git a/Projects/Server/Server.csproj b/Projects/Server/Server.csproj index b1b8b0626..38aca1208 100755 --- a/Projects/Server/Server.csproj +++ b/Projects/Server/Server.csproj @@ -33,7 +33,7 @@ - + diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e8b434774..63e2a4ab8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -18,7 +18,7 @@ jobs: displayName: 'Install .NET 7' inputs: packageType: sdk - version: 7.0.400 + version: 7.0.401 - task: NuGetAuthenticate@1 - script: ./publish.cmd Release displayName: 'Build'