Skip to content

Commit

Permalink
Added docker login to vulnerability scan workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksantamaria authored Nov 6, 2024
1 parent 807861a commit b52ff1e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/vulnerability-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ jobs:
strategy:
matrix: ${{ fromJson(needs.setup-matrix.outputs.matrix) }}
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Scan for vulnerabilities
id: scan
uses: crazy-max/ghaction-container-scan@v3
Expand Down

0 comments on commit b52ff1e

Please sign in to comment.