Merge pull request #713 from betadots/rails-81 #444
This file contains hidden or 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
| --- | |
| name: 🕵️ Security Scanning | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| scan_ci_container: | |
| name: 'Scan CI container' | |
| runs-on: ${{ matrix.builder }} | |
| strategy: | |
| matrix: | |
| include: | |
| - builder: ubuntu-24.04 | |
| platform: amd64 | |
| - builder: ubuntu-24.04-arm | |
| platform: arm64 | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Add VERSION file | |
| run: echo "dummy" > VERSION | |
| - name: Build CI container | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| tags: 'ci/hdm:${{ github.sha }}' | |
| push: false | |
| platforms: linux/${{ matrix.platform }} | |
| - name: Scan image with Anchore Grype | |
| uses: anchore/scan-action@v7 | |
| id: scan | |
| with: | |
| image: 'ci/hdm:${{ 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@v4 | |
| with: | |
| sarif_file: ${{ steps.scan.outputs.sarif }} |