From 51a9aaa51d06459bbfe4c2061db067a04c06f3ff Mon Sep 17 00:00:00 2001 From: Benedek Farkas Date: Thu, 4 Apr 2024 17:23:32 +0200 Subject: [PATCH] Compile workflow: Upgrading actions/checkout and microsoft/setup-msbuild actions to their latest versions --- .github/workflows/compile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 6e6e20289..5e6c11684 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -18,13 +18,13 @@ jobs: steps: - name: Clone repository - uses: actions/checkout@v3.1.0 + uses: actions/checkout@v4.1.1 - name: Restore NuGet packages run: nuget restore src/Orchard.sln - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v1.3.1 + uses: microsoft/setup-msbuild@v2 - name: Compile run: msbuild Orchard.proj /m /v:minimal /t:Compile /p:MvcBuildViews=true /p:TreatWarningsAsErrors=true -WarnAsError