Skip to content

Update file paths in usage.yaml #31

Update file paths in usage.yaml

Update file paths in usage.yaml #31

Workflow file for this run

name: Usage
on:
push:
pull_request:
workflow_dispatch:
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./
id: export
with:
github-token: ${{ secrets.PAT }}
repository: octodemo/vulnerable-node
- run: echo "$JSON" > dependabot.json
env:
JSON: ${{ toJson(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) }}
- 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) }}
- uses: actions/upload-artifact@v4
with:
name: secret-scanning
path: secret-scanning.json