From 8f533db06a384389ecad3544297dca820991acd1 Mon Sep 17 00:00:00 2001 From: maggie0002 <64841595+maggie0002@users.noreply.github.com> Date: Fri, 14 Oct 2022 18:15:35 +0200 Subject: [PATCH] fix: remove deprecated set-output command --- .github/workflows/pre-release.yml | 4 ++-- .github/workflows/tagged-release.yml | 4 ++-- .github/workflows/tests.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 5f79d211..91659ab2 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -21,8 +21,8 @@ jobs: lfs: true fetch-depth: 0 - - id: "yarn-cache" - run: echo "::set-output name=dir::$(yarn cache dir)" + - id: yarn-cache + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - uses: "actions/cache@v2.1.6" with: path: ${{ steps.yarn-cache.outputs.dir }} diff --git a/.github/workflows/tagged-release.yml b/.github/workflows/tagged-release.yml index 98c24b8d..d5fbb6ea 100644 --- a/.github/workflows/tagged-release.yml +++ b/.github/workflows/tagged-release.yml @@ -19,8 +19,8 @@ jobs: lfs: true fetch-depth: 0 - - id: "yarn-cache" - run: echo "::set-output name=dir::$(yarn cache dir)" + - id: yarn-cache + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - uses: "actions/cache@v2.1.6" with: path: ${{ steps.yarn-cache.outputs.dir }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b4c83245..956e14fc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,8 +23,8 @@ jobs: lfs: true fetch-depth: 0 - - id: "yarn-cache" - run: echo "::set-output name=dir::$(yarn cache dir)" + - id: yarn-cache + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - uses: "actions/cache@v2.1.6" with: path: ${{ steps.yarn-cache.outputs.dir }}