fix(config-reload): Prevent config-reload to die when killing services #934
Workflow file for this run
  
    
      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 analysis | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| security-analysis: | |
| name: Trivy scan | |
| runs-on: ubuntu-latest | |
| env: | |
| CACHE_PATH: ${{ github.workspace }}/.buildx-cache | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Cache Docker layers | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ env.CACHE_PATH }} | |
| key: ${{ runner.os }}-buildx-${{ github.sha }} | |
| restore-keys: | | |
| ${{ runner.os }}-buildx- | |
| - name: Build docker-salt-master image | |
| uses: docker/build-push-action@v6.9.0 | |
| with: | |
| context: . | |
| file: ./Dockerfile | |
| cache-from: | | |
| type=local,src=${{ env.CACHE_PATH }} | |
| ghcr.io/cdalvaro/docker-salt-master:latest | |
| cache-to: type=local,dest=${{ env.CACHE_PATH }} | |
| pull: true | |
| load: true | |
| tags: ghcr.io/cdalvaro/docker-salt-master:${{ github.sha }} | |
| - name: Run Trivy vulnerability scanner | |
| uses: aquasecurity/trivy-action@0.28.0 | |
| with: | |
| image-ref: "ghcr.io/cdalvaro/docker-salt-master:${{ github.sha }}" | |
| format: "sarif" | |
| output: "trivy-results.sarif" | |
| - name: Upload Trivy scan results to GitHub Security tab | |
| uses: github/codeql-action/upload-sarif@v3 | |
| with: | |
| sarif_file: "trivy-results.sarif" |