From b2d11aef7678a7842c8930c0fcb1a7f98428869a Mon Sep 17 00:00:00 2001 From: Rui Conti Date: Wed, 2 Feb 2022 22:55:37 -0300 Subject: [PATCH] Fixes deprecated ubuntu vmImage value https://github.com/actions/virtual-environments/issues/3287 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ef40948..b62eae2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,5 +1,5 @@ pool: - vmImage: 'Ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - task: NodeTool@0