Security Check #812
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 Check | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 1 * * *' | |
| permissions: | |
| contents: read | |
| security-events: write | |
| jobs: | |
| scan: | |
| name: 'Image Scan (PHP: ${{ matrix.php-version }})' | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php-version: | |
| - '8.1' | |
| - '8.2' | |
| - '8.3' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Pull image | |
| run: docker pull shopware/docker-base:${{ matrix.php-version }} | |
| - name: Login into Github Docker Registery | |
| run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | |
| - name: Scan for vulnerabilities | |
| id: scan | |
| uses: crazy-max/ghaction-container-scan@v3 | |
| with: | |
| image: shopware/docker-base:${{ matrix.php-version }} | |
| dockerfile: ./${{ matrix.php-version }}/Dockerfile | |
| - name: Upload SARIF file | |
| if: ${{ steps.scan.outputs.sarif != '' }} | |
| uses: github/codeql-action/upload-sarif@v4 | |
| with: | |
| sarif_file: ${{ steps.scan.outputs.sarif }} |