From 81cb6fb3cde29f60a609d5d2efdb3df10d76d34c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Harb=C3=B6ck?= Date: Sun, 10 Mar 2024 16:45:41 +0100 Subject: [PATCH] Update GitHub workflow (yarn cache) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/actions/cache/blob/main/examples.md#node---yarn Signed-off-by: Patrick Harböck --- .github/workflows/nodejs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 29ce3e8..3cbf5d8 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -26,7 +26,7 @@ jobs: - name: Get yarn cache directory path # Docs: https://github.com/actions/cache/blob/master/examples.md#node---yarn id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - uses: actions/cache@v4 # Docs: https://github.com/actions/cache/blob/master/examples.md#node---yarn