Skip to content

Commit

Permalink
Update JSON file outputs in usage.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
austenstone committed Jan 31, 2024
1 parent bb38eb2 commit bf6acfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/usage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
repository: octodemo/vulnerable-node
- name: Write JSON to file
run: |
echo '${{ toJson(fromJson(steps.export.outputs.dependabot)) }}' > dependabot.json
echo '${{ toJson(fromJson(steps.export.outputs.code-scanning)) }}' > code-scanning.json
echo '${{ toJson(fromJson(steps.export.outputs.secret-scanning)) }}'> secret-scanning.json
echo "${{ toJson(steps.export.outputs.dependabot) }}" > dependabot.json
echo "${{ toJson(steps.export.outputs.code-scanning) }}" > code-scanning.json
echo "${{ toJson(steps.export.outputs.secret-scanning) }}" > secret-scanning.json

0 comments on commit bf6acfb

Please sign in to comment.