From 59a8d125e7227efbef01813bf1ecf30fa8b6bd8c Mon Sep 17 00:00:00 2001 From: Noam Tamim Date: Wed, 5 Aug 2020 12:29:52 +0300 Subject: [PATCH] Fix indentation in last pip example --- examples.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples.md b/examples.md index 277c6f3..4e3f64a 100644 --- a/examples.md +++ b/examples.md @@ -367,9 +367,9 @@ Replace `~/.cache/pip` with the correct `path` if not using Ubuntu. > Note: This uses an internal pip API and may not always work ```yaml - name: Get pip cache dir - id: pip-cache - run: | - python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)" + id: pip-cache + run: | + python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)" - uses: actions/cache@v2 with: