From dde5ef52cb96515ac613d9ee462a2ac83546cf4f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 03:08:46 +0000 Subject: [PATCH] chore(deps): update microsoft/setup-msbuild action to v2 (#117) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [microsoft/setup-msbuild](https://togithub.com/microsoft/setup-msbuild) | action | major | `v1` -> `v2` | --- ### Release Notes
microsoft/setup-msbuild (microsoft/setup-msbuild) ### [`v2`](https://togithub.com/microsoft/setup-msbuild/releases/tag/v2) [Compare Source](https://togithub.com/microsoft/setup-msbuild/compare/v1...v2) This is a major version bump with no functionality changes. The major version change is due to moving to `node20` for the node version per the deprecation announcement for GitHub Actions (https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/). This change from `node16` to `node20` could cause breaking changes to other workflow actions steps (see [#​125](https://togithub.com/microsoft/setup-msbuild/issues/125)) running and needing/leveraging expected functionality in `node16` and thus as a safe boundary, changing the version here. **Full Changelog**: https://github.com/microsoft/setup-msbuild/compare/v1.3...v2
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Testably/Testably.Architecture.Rules). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 51d60ef..3aff8fd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -142,7 +142,7 @@ jobs: dotnet-version: | 6.0.x - name: Setup MSBuild - uses: microsoft/setup-msbuild@v1 + uses: microsoft/setup-msbuild@v2 - name: Setup VSTest uses: darenm/Setup-VSTest@v1 - name: Navigate to Workspace diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a689a9..494de7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,7 +102,7 @@ jobs: with: fetch-depth: 0 - name: Setup MSBuild - uses: microsoft/setup-msbuild@v1 + uses: microsoft/setup-msbuild@v2 - name: Setup VSTest uses: darenm/Setup-VSTest@v1 - name: Navigate to Workspace diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f2e60e3..bd7f96e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -148,7 +148,7 @@ jobs: version="${GITHUB_REF#refs/heads/release/}" git tag "${version}" - name: Setup MSBuild - uses: microsoft/setup-msbuild@v1 + uses: microsoft/setup-msbuild@v2 - name: Setup VSTest uses: darenm/Setup-VSTest@v1 - name: Navigate to Workspace