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 }}