From e3aaca2f9303a74b84de3b1f078057a3ff524a5e Mon Sep 17 00:00:00 2001 From: Hugo Date: Wed, 29 Apr 2020 17:33:55 +0300 Subject: [PATCH] Fix existing example --- examples.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples.md b/examples.md index 5346ee2..3030e4a 100644 --- a/examples.md +++ b/examples.md @@ -294,10 +294,10 @@ 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 - id: pip-cache - run: | - python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)" +- 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)" - uses: actions/cache@v1 with: