Skip to content

Commit

Permalink
skip: refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
DnPlas committed Sep 26, 2024
1 parent 93c0a48 commit 01ad674
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/get-images-scan-and-upload-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,14 @@ jobs:
uses: actions/download-artifact@v4
with:
name: ${{ needs.scan-images.outputs.release-track }}-${{ needs.scan-images.outputs.report-path }}
path: /tmp/report.txt
path: /tmp/

- name: Generate issue body
id: issue-body
run: |
#ISSUE_BODY=$(cat ${{ needs.scan-images.outputs.release-track }}-${{ needs.scan-images.outputs.report-path }})
ISSUE_BODY=$(cat /tmp/report.txt)
ls .
ls /tmp
ISSUE_BODY=$(cat /tmp/${{ needs.scan-images.outputs.release-track }}-${{ needs.scan-images.outputs.report-path }})
echo "issue-body=$ISSUE_BODY" >> $GITHUB_OUTPUT
- name: Create/edit issue for vulnerability reports
Expand Down

0 comments on commit 01ad674

Please sign in to comment.