Skip to content

Commit 51c7839

Browse files
Update README.md to include our own GitHub Action (#28)
* Update README.md to include our own GitHub Action Signed-off-by: François Proulx <[email protected]> * Update README.md Co-authored-by: Becojo <[email protected]> Signed-off-by: François Proulx <[email protected]> --------- Signed-off-by: François Proulx <[email protected]> Co-authored-by: Becojo <[email protected]>
1 parent 9cd49ec commit 51c7839

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,27 @@ brew install boostsecurityio/tap/poutine
4040
docker run -e GH_TOKEN ghcr.io/boostsecurityio/poutine:latest
4141
```
4242

43+
#### GitHub Actions
44+
```yaml
45+
...
46+
jobs:
47+
poutine:
48+
runs-on: ubuntu-latest
49+
permissions:
50+
security-events: write
51+
contents: read
52+
steps:
53+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
54+
#################################################################################################
55+
- name: poutine - GitHub Actions SAST
56+
uses: boostsecurityio/poutine-action@main # We recommend to use a tagged version and pin it
57+
#################################################################################################
58+
- name: Upload poutine SARIF file
59+
uses: github/codeql-action/upload-sarif@4355270be187e1b672a7a1c7c7bae5afdc1ab94a # v3.24.10
60+
with:
61+
sarif_file: results.sarif
62+
```
63+
4364
### Usage
4465
``` bash
4566
poutine [options] [command] [arguments]

0 commit comments

Comments
 (0)