Skip to content

Commit

Permalink
Merge pull request #65 from voxpupuli/add_container_scanning
Browse files Browse the repository at this point in the history
feat(ci): add container scanning with grype
  • Loading branch information
bastelfreak authored Nov 29, 2024
2 parents 148fe38 + 232f50e commit 983c534
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/security_scanning.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
name: Security Scanning 🕵️

on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master

jobs:
scan_ci_container:
name: 'Scan CI container'
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Build CI container
uses: docker/build-push-action@v6
with:
tags: 'ci/puppet-catalog-diff-viewer:${{ github.sha }}'
push: false

- name: Scan image with Anchore Grype
uses: anchore/scan-action@v5
id: scan
with:
image: 'ci/puppet-catalog-diff-viewer:${{ github.sha }}'
fail-build: false

- name: Inspect action SARIF report
run: jq . ${{ steps.scan.outputs.sarif }}

- name: Upload Anchore scan SARIF report
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ steps.scan.outputs.sarif }}

0 comments on commit 983c534

Please sign in to comment.