Skip to content

Commit

Permalink
Adjust index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
bramvdklinkenberg committed Oct 13, 2021
1 parent 974d350 commit 3edf0ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/vulnerability-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- run: docker build . -t ${{ secrets.REGISTRY_NAME }}.azurecr.io/testimage:${{ github.sha }}
- run: docker build . -t ${{ secrets.REGISTRY_NAME }}.azurecr.io/nginximage:${{ github.sha }}
name: docker build
- uses: Azure/container-scan@v0
name: scan images for vulnerabilities
id: container_scan
continue-on-error: true
with:
image-name: ${{ secrets.REGISTRY_NAME }}.azurecr.io/testimage:${{ github.sha }}
image-name: ${{ secrets.REGISTRY_NAME }}.azurecr.io/nginximage:${{ github.sha }}
severity-threshold: HIGH
run-quality-checks: true
- uses: Azure/docker-login@v1
Expand All @@ -30,7 +30,7 @@ jobs:
login-server: ${{ secrets.REGISTRY_NAME }}.azurecr.io
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- run: docker push ${{ secrets.REGISTRY_NAME }}.azurecr.io/testimage:${{ github.sha }}
- run: docker push ${{ secrets.REGISTRY_NAME }}.azurecr.io/nginximage:${{ github.sha }}
name: docker push
- uses: azure/publish-security-assessments@v0
name: Post Scan to Azure Security Center
Expand Down

0 comments on commit 3edf0ae

Please sign in to comment.