Skip to content

Commit

Permalink
Multiline
Browse files Browse the repository at this point in the history
  • Loading branch information
tpendragon committed Jul 24, 2024
1 parent f5a5c5a commit 491a75c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/nightly-vuln-scanning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ jobs:
output: 'vulnerabilities.table'
- name: Set variables
id: scanner
run: echo "results=$(cat vulnerabilities.table)" >> $GITHUB_OUTPUT
run: |
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
echo "results<<$EOF" >> $GITHUB_OUTPUT
echo "$(cat vulnerabilities.table)" >> $GITHUB_OUTPUT
echo "$EOF" >> $GITHUB_OUTPUT
- name: Output variable
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 491a75c

Please sign in to comment.