From bb38ba18fb6f14244f021c874b75e24454364f32 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Tue, 24 Oct 2023 12:10:53 -0500 Subject: [PATCH] trying to remove the warnings from the workflow --- .github/workflows/main.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 35dd2102f4..633c97249d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -49,7 +49,9 @@ jobs: - id: setup-zephir-ext name: Setup Zephir Extensions run: | - echo "::set-output name=extensions::zephir_parser-${{ env.ZEPHIR_PARSER_VERSION }}" +# echo "::set-output name=extensions::zephir_parser-${{ env.ZEPHIR_PARSER_VERSION }}" + echo "{extensions}=zephir_parser-${{ env.ZEPHIR_PARSER_VERSION }}" >> $GITHUB_STATE + # PHP CodeSniffer inspection phpcs: @@ -179,7 +181,8 @@ jobs: } else { $PhalconExtPath = "$(php-config --extension-dir)/phalcon.so" } - echo "::set-output name=extension-path::$PhalconExtPath" +# echo "::set-output name=extension-path::$PhalconExtPath" + echo "{extension-path}=$PhalconExtPath" >> $GITHUB_STATE - name: Creates build artifact with Phalcon extension uses: ./.github/actions/pack-phalcon-ext @@ -387,7 +390,8 @@ jobs: - name: Get the release version id: get-version run: | - echo ::set-output name=version::${GITHUB_REF#refs/tags/} +# echo ::set-output name=version::${GITHUB_REF#refs/tags/} + echo "{version}=${GITHUB_REF#refs/tags/}" >> $GITHUB_STATE - name: Download Phalcon build artifacts id: download