From 9b9fa146a3aa35712a79de734392ca7de016e227 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Jun 2023 14:10:16 +0000 Subject: [PATCH 1/3] Bump Serilog from 2.12.0 to 3.0.0 Bumps [Serilog](https://github.com/serilog/serilog) from 2.12.0 to 3.0.0. - [Release notes](https://github.com/serilog/serilog/releases) - [Changelog](https://github.com/serilog/serilog/blob/dev/CHANGES.md) - [Commits](https://github.com/serilog/serilog/compare/v2.12.0...v3.0.0) --- updated-dependencies: - dependency-name: Serilog dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Sandbox/Sandbox.csproj | 4 ++-- Utilities/Utilities.csproj | 4 ++-- UtilitiesTests/UtilitiesTests.csproj | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Sandbox/Sandbox.csproj b/Sandbox/Sandbox.csproj index 54959bf..e58b82c 100644 --- a/Sandbox/Sandbox.csproj +++ b/Sandbox/Sandbox.csproj @@ -1,4 +1,4 @@ - + Exe @@ -6,7 +6,7 @@ - + diff --git a/Utilities/Utilities.csproj b/Utilities/Utilities.csproj index fb64f1d..742e351 100644 --- a/Utilities/Utilities.csproj +++ b/Utilities/Utilities.csproj @@ -1,4 +1,4 @@ - + net7.0 @@ -25,7 +25,7 @@ - + diff --git a/UtilitiesTests/UtilitiesTests.csproj b/UtilitiesTests/UtilitiesTests.csproj index 775dc9e..b2d56a7 100644 --- a/UtilitiesTests/UtilitiesTests.csproj +++ b/UtilitiesTests/UtilitiesTests.csproj @@ -1,4 +1,4 @@ - + net7.0 @@ -24,7 +24,7 @@ - + From d1f0841ce635385b560b158754681694de6b7a1f Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Tue, 20 Jun 2023 09:22:32 -0700 Subject: [PATCH 2/3] Update BuildPublishPipeline.yml --- .github/workflows/BuildPublishPipeline.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/BuildPublishPipeline.yml b/.github/workflows/BuildPublishPipeline.yml index cce4e06..062de77 100644 --- a/.github/workflows/BuildPublishPipeline.yml +++ b/.github/workflows/BuildPublishPipeline.yml @@ -64,7 +64,7 @@ jobs: # Publish to NuGet.org Registry # https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-nuget-push - name: 'Publish to NuGet.org Registry' - if: ${{ env.dopush }} + if: env.dopush run: >- dotnet nuget push ${{ github.workspace }}/Publish/*.nupkg --source https://api.nuget.org/v3/index.json @@ -74,7 +74,7 @@ jobs: # Publish to GitHub NuGet Registry # https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry - name: 'Publish to GitHub NuGet Registry' - if: ${{ env.dopush }} + if: env.dopush run: >- dotnet nuget push ${{ github.workspace }}/Publish/*.nupkg --source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json @@ -83,13 +83,13 @@ jobs: # Zip the output - name: 'Zip Output' - if: ${{ env.dopush }} + if: env.dopush run: 7z a -t7z ./Publish/Utilities.7z ./Publish/* # Create GitHub release # https://github.com/marketplace/actions/automatic-releases - name: 'Create GitHub Release' - if: ${{ env.dopush }} + if: env.dopush uses: marvinpinto/action-automatic-releases@latest with: repo_token: ${{ secrets.GITHUB_TOKEN }} From 8b8ce886896dec9a99805d4ea9434af1aa5a195f Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Tue, 20 Jun 2023 09:52:00 -0700 Subject: [PATCH 3/3] Update BuildPublishPipeline.yml --- .github/workflows/BuildPublishPipeline.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/BuildPublishPipeline.yml b/.github/workflows/BuildPublishPipeline.yml index 062de77..8e03e43 100644 --- a/.github/workflows/BuildPublishPipeline.yml +++ b/.github/workflows/BuildPublishPipeline.yml @@ -64,7 +64,7 @@ jobs: # Publish to NuGet.org Registry # https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-nuget-push - name: 'Publish to NuGet.org Registry' - if: env.dopush + if: env.dopush == 'true' run: >- dotnet nuget push ${{ github.workspace }}/Publish/*.nupkg --source https://api.nuget.org/v3/index.json @@ -74,7 +74,7 @@ jobs: # Publish to GitHub NuGet Registry # https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry - name: 'Publish to GitHub NuGet Registry' - if: env.dopush + if: env.dopush == 'true' run: >- dotnet nuget push ${{ github.workspace }}/Publish/*.nupkg --source https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json @@ -83,13 +83,13 @@ jobs: # Zip the output - name: 'Zip Output' - if: env.dopush + if: env.dopush == 'true' run: 7z a -t7z ./Publish/Utilities.7z ./Publish/* # Create GitHub release # https://github.com/marketplace/actions/automatic-releases - name: 'Create GitHub Release' - if: env.dopush + if: env.dopush == 'true' uses: marvinpinto/action-automatic-releases@latest with: repo_token: ${{ secrets.GITHUB_TOKEN }}