From 3e14bbb42c54e5ba6cca1f3ab68f3c7de2fd8730 Mon Sep 17 00:00:00 2001 From: kevintylerstark <119978929+kevintylerstark@users.noreply.github.com> Date: Mon, 19 Dec 2022 13:46:36 -0800 Subject: [PATCH] Update set-output calls in GHA (#7) --- .github/workflows/jest.yml | 2 +- .github/workflows/js-lint.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/jest.yml b/.github/workflows/jest.yml index 29ded4536..5429b82dd 100644 --- a/.github/workflows/jest.yml +++ b/.github/workflows/jest.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v2 - 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@v2 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) diff --git a/.github/workflows/js-lint.yml b/.github/workflows/js-lint.yml index c2bd2cf15..6e0b3b1a5 100644 --- a/.github/workflows/js-lint.yml +++ b/.github/workflows/js-lint.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v2 - 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@v2 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)