Skip to content

Commit

Permalink
Update environment variables in usage.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
austenstone committed Jan 31, 2024
1 parent 242b4a4 commit e2124e6
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 @@ -20,6 +20,6 @@ jobs:
echo "$CODE_SCANNING" > code-scanning.json
echo "$SECRET_SCANNING" > secret-scanning.json
env:
DEPENDABOT: ${{ toJson(steps.export.outputs.dependabot) }}
CODE_SCANNING: ${{ toJson(steps.export.outputs.code-scanning) }}
SECRET_SCANNING: ${{ toJson(steps.export.outputs.secret-scanning) }}
DEPENDABOT: ${{ toJson(fromJson(steps.export.outputs.dependabot)) }}
CODE_SCANNING: ${{ toJson(fromJson(steps.export.outputs.code-scanning)) }}
SECRET_SCANNING: ${{ toJson(fromJson(steps.export.outputs.secret-scanning)) }}

0 comments on commit e2124e6

Please sign in to comment.