-
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1205 from voxpupuli/switch_to_grype
feat(ci): switch from trivy to grype
- Loading branch information
Showing
2 changed files
with
45 additions
and
42 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,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 }} |
This file was deleted.
Oops, something went wrong.