diff --git a/.github/ISSUE_TEMPLATE/05_problem_with_command.yml b/.github/ISSUE_TEMPLATE/05_problem_with_command.yml index f543de203..33107d441 100644 --- a/.github/ISSUE_TEMPLATE/05_problem_with_command.yml +++ b/.github/ISSUE_TEMPLATE/05_problem_with_command.yml @@ -67,6 +67,7 @@ body: To help with this information: - On a Linux distribution, please provide the distribution name, version, and release. The following command can help get this information: `cat /etc/*-release && cat /proc/version` + - On macOS, please provide the product version and build version. The following command can help get this information: `sw_vers` - On a Windows OS please provide edition, version, build, and language. The following command can help get this information: `Get-ComputerInfo -Property @('OsName','OsOperatingSystemSKU','OSArchitecture','WindowsVersion','WindowsBuildLabEx','OsLanguage','OsMuiLanguages')` placeholder: | Add operating system information here diff --git a/.github/workflows/code-analysis-built-module.yml b/.github/workflows/code-analysis-built-module.yml index ca0d8a567..e159b3bce 100644 --- a/.github/workflows/code-analysis-built-module.yml +++ b/.github/workflows/code-analysis-built-module.yml @@ -24,7 +24,7 @@ jobs: - name: Install GitVersion shell: powershell run: | - dotnet tool install --global GitVersion.Tool + dotnet tool install --global GitVersion.Tool --version 5.* - name: Run GitVersion shell: powershell run: | diff --git a/.github/workflows/code-analysis.yml b/.github/workflows/code-analysis.yml index 1cab501da..f166385b8 100644 --- a/.github/workflows/code-analysis.yml +++ b/.github/workflows/code-analysis.yml @@ -24,7 +24,7 @@ jobs: - name: Install GitVersion shell: powershell run: | - dotnet tool install --global GitVersion.Tool + dotnet tool install --global GitVersion.Tool --version 5.* - name: Run GitVersion shell: powershell run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 2323a1207..20f83c798 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- SqlServerDsc + - Fix issue template. - `Connect-SqlDscDatabaseEngine` - Comment-based help for parameter `LoginType` was corrected. - An integration test now runs to test the command. diff --git a/appveyor.yml b/appveyor.yml index a025a261f..472f517ed 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -56,7 +56,7 @@ build_script: # Only run for pull requests if (-not $env:APPVEYOR_PULL_REQUEST_NUMBER) { Write-Host -ForegroundColor 'Yellow' -Object 'Not a pull request, skipping.'; return } - dotnet tool install --global GitVersion.Tool + dotnet tool install --global GitVersion.Tool --version 5.* $env:IGNORE_NORMALISATION_GIT_HEAD_MOVE = 1 # cSpell: disable-line dotnet-gitversion $gitVersionObject = dotnet-gitversion | ConvertFrom-Json diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5bc43106e..9a9af0411 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -29,7 +29,7 @@ stages: vmImage: 'windows-latest' steps: - pwsh: | - dotnet tool install --global GitVersion.Tool + dotnet tool install --global GitVersion.Tool --version 5.* $gitVersionObject = dotnet-gitversion | ConvertFrom-Json $gitVersionObject.PSObject.Properties.ForEach{ Write-Host -Object "Setting Task Variable '$($_.Name)' with value '$($_.Value)'."