From 757078872d72eceacdbe16391fb6a5e67d778273 Mon Sep 17 00:00:00 2001 From: Sergejs Kostjucenko Date: Tue, 6 Jun 2023 18:07:24 +0300 Subject: [PATCH] fix gha set-output command --- .github/workflows/yarn.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/yarn.yml b/.github/workflows/yarn.yml index 8a4571a..75002bf 100644 --- a/.github/workflows/yarn.yml +++ b/.github/workflows/yarn.yml @@ -20,7 +20,7 @@ jobs: - name: Get yarn cache directory path 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@v3 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)