From 232f50ef7efb018f98b8abaa77bdbf8b9533e64c Mon Sep 17 00:00:00 2001 From: Robert Waffen Date: Fri, 29 Nov 2024 09:20:56 +0100 Subject: [PATCH] feat(ci): add container scanning with grype --- .github/workflows/security_scanning.yml | 45 +++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/security_scanning.yml diff --git a/.github/workflows/security_scanning.yml b/.github/workflows/security_scanning.yml new file mode 100644 index 0000000..456f318 --- /dev/null +++ b/.github/workflows/security_scanning.yml @@ -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 }}