diff --git a/.github/actions/yarn/action.yml b/.github/actions/yarn/action.yml index 0f8442a1..12e5e31c 100644 --- a/.github/actions/yarn/action.yml +++ b/.github/actions/yarn/action.yml @@ -20,7 +20,7 @@ runs: # Install Node - name: Get yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn config get cacheFolder)" + run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT shell: nix shell .#ci --command bash {0} - name: Yarn Cache uses: actions/cache@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f6e53d9b..aae1dfeb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: registry-url: "https://registry.npmjs.org" - name: Get yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn config get cacheFolder)" + run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT - name: Yarn Cache uses: actions/cache@v3 with: