Skip to content

Commit

Permalink
Update workflow to output JSON files for dependabot, code scanning, a…
Browse files Browse the repository at this point in the history
…nd secret scanning
  • Loading branch information
austenstone committed Jan 31, 2024
1 parent a9ceefb commit 99e5322
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 @@ -14,17 +14,17 @@ jobs:
with:
github-token: ${{ secrets.PAT }}
repository: octodemo/vulnerable-node
- run: echo '${{ steps.export.outputs.dependabot }}' > dependabot.json
- run: echo '${{ toJson(steps.export.outputs.dependabot) }}' > dependabot.json
- uses: actions/upload-artifact@v4
with:
name: dependabot
path: dependabot.json
- run: echo '${{ steps.export.outputs.code-scanning }}' > code-scanning.json
- run: echo '${{ toJson(steps.export.outputs.code-scanning) }}' > code-scanning.json
- uses: actions/upload-artifact@v4
with:
name: code-scanning
path: code-scanning.json
- run: echo '${{ steps.export.outputs.secret-scanning }}' > secret-scanning.json
- run: echo '${{ toJson(steps.export.outputs.secret-scanning) }}' > secret-scanning.json
- uses: actions/upload-artifact@v4
with:
name: secret-scanning
Expand Down

0 comments on commit 99e5322

Please sign in to comment.