Skip to content

Commit 46655ee

Browse files
committed
Fix getting file name
1 parent 4819c9a commit 46655ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/check-binaries.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
id: save-output
4242
name: Save output contents
4343
run: |
44-
report_csv="$(cat $(ls -tr output.cve-bin-*.csv 2>/dev/null | tail -n1))" # last file generated
44+
report_csv="$(ls -tr output.cve-bin-*.csv 2>/dev/null | tail -n1)" # last file generated
4545
echo "Vulnerabilities stored in $report_csv"
4646
report="${report_csv}.txt"
4747
awk -F',' '{n=split($10, path, "/"); print $2,$3,$4,$5,path[n]}' "$report_csv" | column -t > "$report" # make the CSV nicer
@@ -80,5 +80,5 @@ jobs:
8080
# ## CVEs found in latest RIE release:
8181
# > **${{ needs.check-binary.outputs.report_contents }}**
8282

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

0 commit comments

Comments
 (0)