Skip to content

build(deps): bump django from 3.2.19 to 3.2.20 #37

build(deps): bump django from 3.2.19 to 3.2.20

build(deps): bump django from 3.2.19 to 3.2.20 #37

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
name: Build
runs-on: "ubuntu-18.04"
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build an image from Dockerfile
run: |
docker build -t mpast/mobile_audit:latest .
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'mpast/mobile_audit:latest'
format: 'template'
template: '@/contrib/sarif.tpl'
output: 'trivy-results.sarif'
severity: 'CRITICAL,HIGH'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: 'trivy-results.sarif'