From b9e942635ab2203f893d9617ad4c066563d5586d Mon Sep 17 00:00:00 2001 From: netkas Date: Tue, 24 Sep 2024 12:33:51 -0400 Subject: [PATCH] Update NCC workflow to use new GitHub environment syntax --- .github/workflows/ncc_workflow.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ncc_workflow.yml b/.github/workflows/ncc_workflow.yml index ddaf92a..6f50550 100644 --- a/.github/workflows/ncc_workflow.yml +++ b/.github/workflows/ncc_workflow.yml @@ -71,10 +71,9 @@ jobs: id: check run: | if [ -f phpunit.xml ]; then - echo "::set-output name=phpunit-exists::true" + echo "phpunit-exists=true" >> $GITHUB_ENV else - echo "::set-output name=phpunit-exists::false" - fi + echo "phpunit-exists=false" >> $GITHUB_ENV test: needs: [build, check-phpunit]