Skip to content

Commit

Permalink
Test-failure. no issue
Browse files Browse the repository at this point in the history
  • Loading branch information
valerena committed May 17, 2024
1 parent 44b9bca commit 4819c9a
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions .github/workflows/check-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
name: Save output contents
run: |
report_csv="$(cat $(ls -tr output.cve-bin-*.csv 2>/dev/null | tail -n1))" # last file generated
echo "Vulnerabilities stored in $report_csv"
report="${report_csv}.txt"
awk -F',' '{n=split($10, path, "/"); print $2,$3,$4,$5,path[n]}' "$report_csv" | column -t > "$report" # make the CSV nicer
echo "report_contents=$(cat $report)" >> "$GITHUB_OUTPUT"
Expand All @@ -63,18 +64,21 @@ jobs:
else
fixed="Yes"
fi
echo fixed=$fixed" >> "$GITHUB_OUTPUT"
echo "fixed=$fixed" >> "$GITHUB_OUTPUT"
echo "Fixed=$fixed"
echo "${{ steps.check-new-version.outputs.latest_version }}"
echo "${{ needs.check-binary-outputs.report_contents }}"
- name: Create Issue
id: create-issue
uses: dacbd/create-issue-action@main
with:
token: ${{ github.token }}
title: |
CVEs found in latest RIE release
body: |
## CVEs found in latest RIE release:
> **${{ needs.check-binary.outputs.report_contents }}**
# - name: Create Issue
# id: create-issue
# uses: dacbd/create-issue-action@main
# with:
# token: ${{ github.token }}
# title: |
# CVEs found in latest RIE release
# body: |
# ## CVEs found in latest RIE release:
# > **${{ needs.check-binary.outputs.report_contents }}**

#### Is this fixed by updating to the latest Go version (${{steps.check-new-version.outputs.latest_version}})?):
${{ steps.check-new-version.outputs.fixed }}
# #### Is this fixed by updating to the latest Go version (${{steps.check-new-version.outputs.latest_version}})?):
# ${{ steps.check-new-version.outputs.fixed }}

0 comments on commit 4819c9a

Please sign in to comment.