Skip to content

Bump django from 5.1.4 to 5.1.5 in /src (#34) #128

Bump django from 5.1.4 to 5.1.5 in /src (#34)

Bump django from 5.1.4 to 5.1.5 in /src (#34) #128

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build application
uses: docker/build-push-action@v4
with:
tags: localbuild/django-in-docker-starter:latest
push: false
load: true
- name: Run app
run: docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d web app
- name: Check app is being served through nginx
run: nc -zv localhost 8080
- uses: anchore/scan-action@v3
with:
image: "localbuild/django-in-docker-starter:latest"
fail-build: true
output-format: "table"
severity-cutoff: "medium"
- name: Teardown
run: docker compose down