From a1ba7a525ed338aadf5d4a0931073a9693bf78e1 Mon Sep 17 00:00:00 2001 From: "A. Pascual" Date: Sat, 10 Dec 2022 20:04:41 +0100 Subject: [PATCH] Update examples.md According with the behavior description the id of "Get npm cache directory" must be "npm-cache-dir". I checked it in my own project. --- examples.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples.md b/examples.md index fbaf32d..13741fb 100644 --- a/examples.md +++ b/examples.md @@ -317,7 +317,7 @@ After [deprecation](https://github.blog/changelog/2022-10-11-github-actions-depr ### Bash shell ```yaml - name: Get npm cache directory - id: npm-cache + id: npm-cache-dir shell: bash run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT} ``` @@ -325,7 +325,7 @@ After [deprecation](https://github.blog/changelog/2022-10-11-github-actions-depr ### PWSH shell ```yaml - name: Get npm cache directory - id: npm-cache + id: npm-cache-dir shell: pwsh run: echo "dir=$(npm config get cache)" >> ${env:GITHUB_OUTPUT} ```