From 7e917d0a080f9dd782d4f1c64b6e94f222cf6da6 Mon Sep 17 00:00:00 2001 From: sentriz Date: Wed, 28 Dec 2022 01:22:58 +0000 Subject: [PATCH] chore(ci): don't use set-output --- .github/workflows/nightly-release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly-release.yaml b/.github/workflows/nightly-release.yaml index 9aff752..3395aae 100644 --- a/.github/workflows/nightly-release.yaml +++ b/.github/workflows/nightly-release.yaml @@ -14,8 +14,8 @@ jobs: - id: check run: | test -n "$(git rev-list --after="24 hours" ${{ github.sha }})" \ - && echo "::set-output name=should_run::true" \ - || echo "::set-output name=should_run::false" + && echo "should_run=true" >>$GITHUB_OUTPUT \ + || echo "should_run=false" >>$GITHUB_OUTPUT test: name: Lint and test needs: check-date