From 5690db2d48275ab5cc3a563a09eadb42c234b9b4 Mon Sep 17 00:00:00 2001 From: PrettyCoffee Date: Mon, 6 Jan 2025 01:45:19 +0100 Subject: [PATCH] chore(actions): Use GITHUB_OUTPUT for job output --- .github/workflows/chromatic.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 9c0102b..3334a5e 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -21,7 +21,7 @@ jobs: - id: should_run continue-on-error: true name: check latest commit is less than a day - run: test -z $(git rev-list --after="24 hours" ${{ github.sha }}) && echo "::set-output name=should_run::false" + run: test -z $(git rev-list --after="24 hours" ${{ github.sha }}) && echo "should_run=false" >> $GITHUB_OUTPUT chromatic: name: Run Chromatic