Skip to content

Commit

Permalink
Update workflow to use raw output values
Browse files Browse the repository at this point in the history
  • Loading branch information
austenstone committed Jan 31, 2024
1 parent 9b27ad8 commit 7f79deb
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,21 +16,21 @@ jobs:
repository: octodemo/vulnerable-node
- run: echo "$JSON" > dependabot.json
env:
JSON: ${{ toJson(steps.export.outputs.dependabot) }}
JSON: ${{ steps.export.outputs.dependabot }}
- uses: actions/upload-artifact@v4
with:
name: dependabot
path: dependabot.json
- run: echo "$JSON" > code-scanning.json
env:
JSON: ${{ toJson(steps.export.outputs.code-scanning) }}
JSON: ${{ steps.export.outputs.code-scanning }}
- uses: actions/upload-artifact@v4
with:
name: code-scanning
path: code-scanning.json
- run: echo "$JSON" > secret-scanning.json
env:
JSON: ${{ toJson(steps.export.outputs.secret-scanning) }}
JSON: ${{ steps.export.outputs.secret-scanning }}
- uses: actions/upload-artifact@v4
with:
name: secret-scanning
Expand Down

0 comments on commit 7f79deb

Please sign in to comment.