From 0b5f9897035e3ffb27e56671d4b52b371ddaf5e3 Mon Sep 17 00:00:00 2001
From: Jamie Magee <JamieMagee@users.noreply.github.com>
Date: Mon, 18 Nov 2019 00:52:49 +0100
Subject: [PATCH] chore(ci): use latest VM images (#4821)

See [Microsoft-hosted agents](https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops#use-a-microsoft-hosted-agent) for a complete list of available images.

These don't update very often, but what do you think about targeting `windows-lates`, `ubuntu-latest`, and `macOS-latest`?
---
 azure-pipelines.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 5ca36a07a7..8443af3000 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -24,7 +24,7 @@ jobs:
           nodeVersion: '12.x'
           pythonVersion: '3.7'
     pool:
-      vmImage: vs2017-win2016
+      vmImage: windows-2019
     steps:
       - bash: |
           set -e
@@ -41,7 +41,7 @@ jobs:
           nodeVersion: '10.x'
           pythonVersion: '3.7'
     pool:
-      vmImage: ubuntu-16.04
+      vmImage: ubuntu-18.04
     steps:
       - template: .azure/steps.yml
 
-- 
GitLab