From 174289e423b95f694609865a552d17326b90a164 Mon Sep 17 00:00:00 2001 From: Sunny Date: Sun, 1 May 2022 02:01:05 +0530 Subject: [PATCH] circleci: Update to ubuntu 20.04 machine image Circleci is deprecating ubuntu 16.04 on May 31, 2022. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8e44763f2..ea95f9871 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 jobs: build: machine: - image: ubuntu-1604:201903-01 + image: ubuntu-2004:202201-02 environment: # Flag that this is a CI build to the Makefile IS_CI_BUILD: 1 @@ -18,7 +18,7 @@ jobs: # TODO: Push to a dev registry test: machine: - image: ubuntu-1604:201903-01 + image: ubuntu-2004:202201-02 steps: # Checkout the repo - checkout