diff --git a/Ado/Jobs/TestPowerShellOnLinux.psd1 b/Ado/Jobs/TestPowerShellOnLinux.psd1 index c7591bfd..0a174d7c 100644 --- a/Ado/Jobs/TestPowerShellOnLinux.psd1 +++ b/Ado/Jobs/TestPowerShellOnLinux.psd1 @@ -1,6 +1,6 @@ @{ job= 'Linux' displayName = 'Linux' - pool = @{vmImage='ubuntu-16.04'} + pool = @{vmImage='ubuntu-latest'} steps = 'InstallPowerShellCoreOnLinux','InstallPester', 'RunPester','PublishTestResults','PublishCodeCoverage' } \ No newline at end of file diff --git a/Ado/Jobs/TestPowerShellOnMac.psd1 b/Ado/Jobs/TestPowerShellOnMac.psd1 index c285c952..22dec4d9 100644 --- a/Ado/Jobs/TestPowerShellOnMac.psd1 +++ b/Ado/Jobs/TestPowerShellOnMac.psd1 @@ -1,6 +1,6 @@ @{ job = 'MacOS' displayName = 'MacOS' - pool = @{vmImage='xcode9-macos10.13'} + pool = @{vmImage='macos-latest'} steps = 'InstallPowerShellCoreOnMacOS','InstallPester', 'RunPester','PublishTestResults','PublishCodeCoverage' } \ No newline at end of file diff --git a/Ado/Jobs/TestPowerShellOnWindows.psd1 b/Ado/Jobs/TestPowerShellOnWindows.psd1 index 86114eb0..a6372519 100644 --- a/Ado/Jobs/TestPowerShellOnWindows.psd1 +++ b/Ado/Jobs/TestPowerShellOnWindows.psd1 @@ -1,6 +1,6 @@ @{ job = 'Windows' displayName = 'Windows' - pool = @{vmImage='vs2017-win2016'} + pool = @{vmImage='windows-latest'} steps = 'InstallPester', 'RunPester','PublishTestResults','PublishCodeCoverage' } \ No newline at end of file diff --git a/Ado/Stages/PowerShellStaticAnalysis.psd1 b/Ado/Stages/PowerShellStaticAnalysis.psd1 index 7291aaa0..fe6bd792 100644 --- a/Ado/Stages/PowerShellStaticAnalysis.psd1 +++ b/Ado/Stages/PowerShellStaticAnalysis.psd1 @@ -6,7 +6,7 @@ job = 'PSScriptAnalyzer' displayName = 'PSScriptAnalyzer' pool=@{ - vmImage= 'vs2017-win2016' + vmImage= 'windows-latest' } steps = @('InstallPSDevOps', 'InstallPSScriptAnalyzer','RunPSScriptAnalyzer') })