From f0271f89cd488fd292862eeddec697238e67d413 Mon Sep 17 00:00:00 2001 From: Payton Swick Date: Sun, 8 Dec 2024 12:19:28 -0500 Subject: [PATCH] Remove unnecessary fromJSON --- .github/workflows/csqa.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/csqa.yml b/.github/workflows/csqa.yml index 5401224..7b9a485 100644 --- a/.github/workflows/csqa.yml +++ b/.github/workflows/csqa.yml @@ -137,7 +137,7 @@ jobs: run: echo "PHPCS_PERF_SECS=$(./vendor/bin/phpcs --standard=VariableAnalysis --report=Performance ./PHPMailer.php | grep -Eo 'TOTAL SNIFF PROCESSING TIME[ ]+[0-9.]+'|awk '{ print $5 }')" >> $GITHUB_OUTPUT - name: Log performance - run: echo "${{ fromJSON( steps.performance_report.outputs.PHPCS_PERF_SECS ) }}" + run: echo "${{ steps.performance_report.outputs.PHPCS_PERF_SECS }}" # fromJSON is used to convert strings to numbers in github actions. # @link https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/evaluate-expressions-in-workflows-and-actions#operators