Skip to content

Commit

Permalink
move action (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
becojo authored Apr 15, 2024
1 parent d79780f commit 63ba148
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
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"]
21 changes: 21 additions & 0 deletions action.yml
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"

0 comments on commit 63ba148

Please sign in to comment.