Skip to content

Commit 6585cc5

Browse files
committed
fix run syntax
1 parent 218a76c commit 6585cc5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,8 @@ The Dependency Review GitHub Action check will only block a pull request from be
176176
> ```yaml
177177
> env:
178178
> VULNERABLE_CHANGES: ${{ steps.review.outputs.vulnerable-changes }}
179-
> run: echo "$VULNERABLE_CHANGES" | jq
179+
> run: |
180+
> echo "$VULNERABLE_CHANGES" | jq
180181
> ```
181182
>
182183
> instead of direct `echo '${{ steps.review.outputs.vulnerable-changes }}'`. See [examples](docs/examples.md) for more.

0 commit comments

Comments
 (0)