You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| `cmd` | a reference to the [Grype](https://github.com/anchore/grype) binary. |
192
+
193
+
`cmd` can be referenced in a workflow like other output parameters:
194
+
`${{ steps.<step-id>.outputs.cmd }}`
195
+
196
+
Example usage:
197
+
198
+
```yaml
199
+
- uses: anchore/scan-action/download-grype@v3
200
+
id: grype
201
+
- run: ${{steps.grype.outputs.cmd}} dir:.
202
+
```
203
+
177
204
## Contributing
178
205
179
206
We love contributions, feedback, and bug reports. For issues with the invocation of this action, file [issues](https://github.com/anchore/scan-action/issues) in this repository.
0 commit comments