Skip to content

Commit

Permalink
rename output var, remove uuoc
Browse files Browse the repository at this point in the history
  • Loading branch information
dom-colangelo committed Feb 20, 2024
1 parent 7dce58c commit 4391935
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ outputs:
internal-be-careful-output:
description: "the column-formatted output from pip-audit, wrapped as base64"
value: "${{ steps.pip-audit.outputs.output }}"
summary-raw:
description: "the raw summary output from pip-audit, passed to the Job Summaries page"
value: "${{ steps.pip-audit.outputs.summary-raw }}"
markdown-summary:
description: "the markdown summary output from pip-audit, passed to the Job Summaries page"
value: "${{ steps.pip-audit.outputs.markdown-summary }}"
runs:
using: "composite"
steps:
Expand All @@ -76,7 +76,9 @@ runs:
python "${{ github.action_path }}/action.py" "${{ inputs.inputs }}"
echo "summary-raw=$(cat $GITHUB_STEP_SUMMARY)" >> $GITHUB_ENV
if [[ ${{ inputs.summary }} ]]; then
echo "markdown-summary=$(<${GITHUB_STEP_SUMMARY})" >> ${GITHUB_ENV}
fi
env:
GHA_PIP_AUDIT_SUMMARY: "${{ inputs.summary }}"
GHA_PIP_AUDIT_NO_DEPS: "${{ inputs.no-deps }}"
Expand Down

0 comments on commit 4391935

Please sign in to comment.