-
-
Notifications
You must be signed in to change notification settings - Fork 11
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 #65 from voxpupuli/add_container_scanning
feat(ci): add container scanning with grype
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 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/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 }} |