-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM ghcr.io/boostsecurityio/poutine:0.9.7@sha256:034326fac021cbedf8df99e90d993ec3553c7649395040bbb8bca05b601de35a | ||
|
||
USER root | ||
|
||
ENTRYPOINT ["/bin/sh", "-c"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: poutine - GitHub Actions SAST | ||
description: | | ||
BoostSecurity.io’s poutine detects vulnerabilities and misconfigurations in your GitHub Actions workflows. | ||
Designed to streamline security analysis, poutine scans your repository’s CI/CD pipelines. | ||
It offers insights to secure your software supply chain efficiently. | ||
inputs: | ||
format: | ||
description: 'Report format' | ||
default: sarif | ||
required: true | ||
output: | ||
description: 'Report file output' | ||
default: results.sarif | ||
required: true | ||
runs: | ||
using: docker | ||
image: Dockerfile | ||
args: | ||
- | | ||
git config --global --add safe.directory "$GITHUB_WORKSPACE" | ||
poutine -format "$INPUT_FORMAT" analyze_local "$GITHUB_WORKSPACE" > "$INPUT_OUTPUT" |