From 4c5c2e0efe9c8389047a04833af6e3f09c4a45db Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Sun, 23 Oct 2022 10:47:16 +0200 Subject: [PATCH] GitHub Action: Remove set-output command --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a0e39df..fa36f4d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: node-version: 18 - name: Get yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" + run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT - name: Manage yarn, webpack and assets cache uses: actions/cache@v3 # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)