Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nanuchi authored Jan 9, 2024
1 parent 9ef3750 commit c1c6be3
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,29 @@ jobs:
- name: Build Docker Image
run: docker build -f Dockerfile -t myapp:latest .

- name: Docker Scout Scan
run: |
curl -fsSL https://raw.githubusercontent.com/docker/scout-cli/main/install.sh -o install-scout.sh
sh install-scout.sh
docker scout quickview
docker scout cves
# - name: Docker Scout Scan
# run: |
# curl -fsSL https://raw.githubusercontent.com/docker/scout-cli/main/install.sh -o install-scout.sh
# sh install-scout.sh
# echo ${{ secrets.REPO_PWD }} | docker login -u ${{ secrets.REPO_USER }} --password-stdin
# docker scout quickview
# docker scout cves

- name: Docker Scout Scan
uses: docker/[email protected]
with:
dockerhub-user: ${{ secrets.REPO_USER }}
dockerhub-password: ${{ secrets.REPO_PWD }}
command: quickview,cves
only-severities: critical,high
sarif-file: scout-report.sarif

- name: Upload Artifact
uses: actions/upload-artifact@v3
if: always()
with:
name: docker-scout-findings
path: scout-report.sarif



Expand Down

0 comments on commit c1c6be3

Please sign in to comment.