Skip to content

Commit

Permalink
lowecase repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
southeo committed Dec 12, 2023
1 parent c439de1 commit 1f743bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ jobs:
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- name: Build image
run: |
docker build -t $REPO_LC data-model/
docker build -t ${REPO_LC} data-model/
- name: Trivy - List all vulnerabilities
uses: aquasecurity/trivy-action@master
with:
image-ref: '$REPO_LC'
image-ref: '${REPO_LC}'
format: 'table'
ignore-unfixed: true
vuln-type: 'os,library'
- name: Trivy - Stop on Severe Vulnerabilities
uses: aquasecurity/trivy-action@master
with:
image-ref: '$REPO_LC'
image-ref: '${REPO_LC}'
format: 'table'
ignore-unfixed: true
trivyignores: .github/workflows/.trivyignore
Expand All @@ -49,7 +49,7 @@ jobs:
id: meta
uses: docker/metadata-action@v4
with:
images: public.ecr.aws/dissco/$REPO_LC
images: public.ecr.aws/dissco/${REPO_LC}
tags: |
type=sha
type=raw,value=latest
Expand Down

0 comments on commit 1f743bd

Please sign in to comment.