From 889a41562e0b7a6c63a746c123eeacd7eb589a47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cat=E2=84=A2?= Date: Tue, 12 Jan 2021 06:22:53 +0000 Subject: [PATCH] Add Ubuntu 20.04 to supported platforms (#463) Co-authored-by: Casey Lee --- cmd/platforms.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/platforms.go b/cmd/platforms.go index b79e8edd..4be7896b 100644 --- a/cmd/platforms.go +++ b/cmd/platforms.go @@ -7,6 +7,7 @@ import ( func (i *Input) newPlatforms() map[string]string { platforms := map[string]string{ "ubuntu-latest": "node:12.6-buster-slim", + "ubuntu-20.04": "node:12.6-buster-slim", "ubuntu-18.04": "node:12.6-buster-slim", "ubuntu-16.04": "node:12.6-stretch-slim", "windows-latest": "",