Skip to content

Commit

Permalink
ci: add workflow file for Security Gate
Browse files Browse the repository at this point in the history
  • Loading branch information
scriptprivate authored Dec 16, 2024
1 parent d38b19e commit 74c90a5
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/security-gate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Security Gate - LESIS

on:
pull_request:
branches:
- main
- develop

permissions:
security-events: read
contents: read

jobs:
build:
runs-on: ubuntu-latest
env:
MAX_CRITICAL: 0
MAX_HIGH: 0
MAX_MEDIUM: 0
MAX_LOW: 0
GITHUB_TOKEN: ${{ secrets.TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Pull Docker image from GitHub Container Registry
run: docker pull ghcr.io/instriq/security-gate/security-gate:latest

- name: Verify security alerts from GHAS
run: |
docker run ghcr.io/instriq/security-gate/security-gate:latest \
-t "$GITHUB_TOKEN" \
-r "${{ github.repository }}" \
-c "$MAX_CRITICAL" \
-h "$MAX_HIGH" \
-m "$MAX_MEDIUM" \
-l "$MAX_LOW" \
--dependency-alerts \
--secret-alerts \
--code-alerts

0 comments on commit 74c90a5

Please sign in to comment.