Skip to content

fix: [#378] Change initial admin pass (automatically). #804

fix: [#378] Change initial admin pass (automatically).

fix: [#378] Change initial admin pass (automatically). #804

Workflow file for this run

---
name: Trivy
'on': push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build an image from Dockerfile
run: |
docker build -t utrecht/n3dr:${{ github.sha }} .
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'utrecht/n3dr:${{ github.sha }}'
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'