fix run syntax

This commit is contained in:
laughedelic
2024-03-19 21:23:25 +01:00
parent 218a76cbd5
commit 6585cc5f01
+2 -1
View File
@@ -176,7 +176,8 @@ The Dependency Review GitHub Action check will only block a pull request from be
> ```yaml
> env:
> VULNERABLE_CHANGES: ${{ steps.review.outputs.vulnerable-changes }}
> run: echo "$VULNERABLE_CHANGES" | jq
> run: |
> echo "$VULNERABLE_CHANGES" | jq
> ```
>
> instead of direct `echo '${{ steps.review.outputs.vulnerable-changes }}'`. See [examples](docs/examples.md) for more.