From f94859613c9c628a1cccf8f2cccf0126524eff06 Mon Sep 17 00:00:00 2001 From: Brady McDermott Date: Sat, 30 Mar 2024 18:10:56 -0600 Subject: [PATCH] update msbuild and action checkout --- .github/workflows/msbuild.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index d94d143..04b6f25 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -16,12 +16,6 @@ env: # Path to the solution file relative to the root of the project. SOLUTION_FILE_PATH: . - # Configuration type to build. - # You can convert this to a build matrix if you need coverage of multiple configuration types. - # https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix - BUILD_CONFIGURATION: Release - BUILD_PLATFORM: x64 - permissions: contents: read @@ -35,10 +29,10 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4.1.1 - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v1.0.2 + uses: microsoft/setup-msbuild@v2 - name: Restore NuGet packages working-directory: ${{env.GITHUB_WORKSPACE}}