AdamOswald / tes

2 stars 1 forks source link

Update microsoft/setup-msbuild action to v1.3.1 #124

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
microsoft/setup-msbuild action minor v1.1.3 -> v1.3.1

Release Notes

microsoft/setup-msbuild ### [`v1.3.1`](https://togithub.com/microsoft/setup-msbuild/releases/tag/v1.3.1) [Compare Source](https://togithub.com/microsoft/setup-msbuild/compare/v1.1.3...v1.3.1) #### What's Changed - Implement [#​109](https://togithub.com/microsoft/setup-msbuild/issues/109) adding action types file by [@​Vampire](https://togithub.com/Vampire) in [https://github.com/microsoft/setup-msbuild/pull/110](https://togithub.com/microsoft/setup-msbuild/pull/110) #### New Contributors - [@​Vampire](https://togithub.com/Vampire) made their first contribution in [https://github.com/microsoft/setup-msbuild/pull/110](https://togithub.com/microsoft/setup-msbuild/pull/110) **Full Changelog**: https://github.com/microsoft/setup-msbuild/compare/v1.2...v1.3.1

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.



This PR has been generated by Mend Renovate. View repository job log here.

performance-testing-bot[bot] commented 1 year ago

Unable to locate .performanceTestingBot config file

viezly[bot] commented 1 year ago

Pull request by bot. No need to analyze

difflens[bot] commented 1 year ago

View changes in DiffLens

guide-bot[bot] commented 1 year ago

Thanks for opening this Pull Request! We need you to:

  1. Fill out the description.

    Action: Edit description and replace <!- ... --> with actual values.

  2. Complete the activities.

    Action: Complete If you want to rebase/retry this PR, check this box

    If an activity is not applicable, use '\~activity description\~' to mark it not applicable.

senior-dev-bot[bot] commented 1 year ago

Senior-Dev Bot :robot:

Diff 1:

Updating to the latest version of microsoft/setup-msbuild improves reliability and ensures compatibility with newer software versions. Consider specifying a version range or automatically updating dependencies to stay current with your project's needs.

- uses: microsoft/setup-msbuild@v1.1.3
+ uses: microsoft/setup-msbuild@v1.x

or

- uses: microsoft/setup-msbuild@v1.1.3
+ uses: microsoft/setup-msbuild@v1.3.1
  with:
    update: true

Diff 2:

It's great to see that you are using GitHub Actions for your build process! Updating the "setup-msbuild" action to the latest version is a good practice to ensure that you are using the latest features and bug fixes. It's also a best practice to always specify the exact version of the action you're using to ensure that behavior doesn't change unexpectedly. You can do this by appending "@version_number" to the "uses" field.

- name: Add MSBuild to PATH
  uses: microsoft/setup-msbuild@v1.3.1

Overall, great job!