Skip to content

Commit

Permalink
Merge pull request #1205 from voxpupuli/switch_to_grype
Browse files Browse the repository at this point in the history
feat(ci): switch from trivy to grype
  • Loading branch information
bastelfreak authored Nov 29, 2024
2 parents 2f21617 + 7103f6f commit b5967c3
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 42 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/puppetboard:${{ github.sha }}'
push: false

- name: Scan image with Anchore Grype
uses: anchore/scan-action@v5
id: scan
with:
image: 'ci/puppetboard:${{ 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 }}
42 changes: 0 additions & 42 deletions .github/workflows/trivy-analysis.yml

This file was deleted.

0 comments on commit b5967c3

Please sign in to comment.