From a1876e61f8b41c75eda9821fa732f20b5863ace7 Mon Sep 17 00:00:00 2001 From: discoursebot Date: Fri, 30 Dec 2022 22:41:51 -0500 Subject: [PATCH] DEV: Update CI workflows (#10) Co-authored-by: discoursebuild --- .github/workflows/component-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/component-tests.yml b/.github/workflows/component-tests.yml index 5bde9a3..565ec09 100644 --- a/.github/workflows/component-tests.yml +++ b/.github/workflows/component-tests.yml @@ -28,7 +28,7 @@ jobs: shell: bash run: | if [ 0 -lt $(find tmp/component/test -type f \( -name "*.js" -or -name "*.es6" \) 2> /dev/null | wc -l) ]; then - echo "::set-output name=tests_exist::true" + echo "tests_exist=true" >> $GITHUB_OUTPUT fi test: @@ -94,7 +94,7 @@ jobs: - name: Get yarn cache directory id: yarn-cache-dir - run: echo "::set-output name=dir::$(yarn cache dir)" + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Yarn cache uses: actions/cache@v3