Skip to content

Commit

Permalink
Update file names in action
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Oct 23, 2023
1 parent 565eab7 commit 6af52f8
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 @@ -44,17 +44,17 @@ runs:
- name: Convert output of command to common input format
shell: bash
run: |
security-issues convert ${{inputs.format}} < scan-output > cves.json
security-issues convert ${{inputs.format}} < scan-output > cves.jsonl
# Remove irrelevant e.g. if issue already exists or existed
# Info: a general ignore list could be added here to
- name: Filter issues
shell: bash
run: |
security-issues filter github < cves.json > issues.json
security-issues filter github < cves.jsonl > issues.jsonl
# Info: alternative issue tracker(s) could be added in the future
- name: Create Issues
shell: bash
run: |
security-issues create < issues.json
security-issues create < issues.jsonl

0 comments on commit 6af52f8

Please sign in to comment.