Skip to content

Commit

Permalink
Update action
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Oct 25, 2023
1 parent 16a9d23 commit 90670b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/security-issues/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ runs:
- name: Create Security Issue Report
shell: bash
run: |
${{ inputs.command }} > input
${{ inputs.command }} | tee input
- name: Convert Report To Common Input Format
shell: bash
run: |
tbx security cve convert ${{inputs.format}} < input > cves.jsonl
tbx security cve convert ${{inputs.format}} < input | tee cves.jsonl
# Remove irrelevant e.g. if issue already exists or existed
# Info: a general ignore list could be added here to
Expand All @@ -54,7 +54,7 @@ runs:
GH_TOKEN: ${{ inputs.github-token }}
shell: bash
run: |
tbx security cve filter github < cves.jsonl > issues.jsonl
tbx security cve filter github < cves.jsonl | tee issues.jsonl
# Info: alternative issue tracker(s) could be added in the future
- name: Create Issues
Expand Down

0 comments on commit 90670b1

Please sign in to comment.