diff --git a/.github/actions/node-setup/action.yml b/.github/actions/node-setup/action.yml index 9848f55c..f0f138e7 100644 --- a/.github/actions/node-setup/action.yml +++ b/.github/actions/node-setup/action.yml @@ -4,9 +4,10 @@ runs: using: "composite" steps: # https://github.com/actions/cache/blob/main/examples.md#node---yarn + # https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ - 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 shell: bash - name: Node cache