From 926d56fcba4e2c2a3607430a2865fe20f888401c Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Tue, 2 Jun 2020 16:44:14 +0900 Subject: [PATCH] Update documentation --- docs/concepts-guidelines.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/concepts-guidelines.md b/docs/concepts-guidelines.md index 22b1faa..358bd24 100644 --- a/docs/concepts-guidelines.md +++ b/docs/concepts-guidelines.md @@ -241,7 +241,9 @@ jobs: image: alpine steps: - name: Install dependencies - run: apk --no-cache add git python3 + run: | + apk --no-cache add git python3 + python3 -m ensurepip - uses: actions/checkout@v2