Skip to content

Commit

Permalink
Address set-output deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
cansavvy authored Jan 31, 2023
1 parent 53dc6b3 commit b525aed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ printf $report_path \n
printf $chk_results \n

# Save output
echo "::set-output name=error_name::$error_name"
echo "::set-output name=report_path::$report_path"
echo "::set-output name=chk_results=$chk_results"
echo "error_name=$error_name" >> $GITHUB_OUTPUT
echo "report_path=$report_path" >> $GITHUB_OUTPUT
echo "chk_results=$chk_results" >> $GITHUB_OUTPUT

0 comments on commit b525aed

Please sign in to comment.