Merge branch 'main' into other/scan-notification #8
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: Docker Image Security Scan | |
| on: | |
| push: | |
| branches: | |
| - other/scan-notification | |
| jobs: | |
| checkDockerImage: | |
| name: Scan Docker Image with Trivy | |
| # if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@722adc63f1aa60a57ec37892e133b1d319cae598 | |
| - name: Set up Go | |
| uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 | |
| with: | |
| go-version-file: go.mod | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@cf09c5c41b299b55c366aff30022701412eb6ab0 | |
| - name: Log in to Docker Hub | |
| uses: docker/login-action@49ed152c8eca782a232dede0303416e8f356c37b | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| - name: Build the project | |
| run: go build -o ./cx ./cmd | |
| - name: Build Docker image | |
| run: docker build -t ast-cli:${{ github.event.workflow_run.head_sha }} . | |
| - name: Run Trivy scan | |
| uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 | |
| with: | |
| scan-type: image | |
| image-ref: ast-cli:${{ github.event.workflow_run.head_sha }} | |
| format: table | |
| exit-code: 1 | |
| ignore-unfixed: true | |
| vuln-type: os,library | |
| output: trivy-image-results.txt | |
| env: | |
| TRIVY_SKIP_JAVA_DB_UPDATE: true | |
| - name: Show scan results | |
| if: always() | |
| run: cat trivy-image-results.txt |