From 8cffac65d9918d59bfd513c32d80b01a05306121 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Fri, 11 Nov 2022 16:14:44 +0800 Subject: [PATCH] Use normal images which includes git command --- runtime/task.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/task.go b/runtime/task.go index 9ae4d66..4d8578e 100644 --- a/runtime/task.go +++ b/runtime/task.go @@ -101,9 +101,9 @@ func getWorkflowsPath(dir string) (string, error) { func demoPlatforms() map[string]string { return map[string]string{ - "ubuntu-latest": "node:16-buster-slim", - "ubuntu-20.04": "node:16-buster-slim", - "ubuntu-18.04": "node:16-buster-slim", + "ubuntu-latest": "node:16-buster", + "ubuntu-20.04": "node:16-buster", + "ubuntu-18.04": "node:16-buster", } }