Skip to content

audit logging

audit logging #4

name: Lint Dockerfiles
on:
push:
branches:
- '*'
paths:
- '**/Dockerfile'
- '.github/workflows/lint-dockerfiles.yml'
pull_request:
paths:
- '**/Dockerfile'
- '.github/workflows/lint-dockerfiles.yml'
jobs:
hadolint:
name: Lint Dockerfiles
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run hadolint on backend
uses: hadolint/[email protected]
with:
dockerfile: backend/Dockerfile
failure-threshold: warning
- name: Run hadolint on proxy
uses: hadolint/[email protected]
with:
dockerfile: proxy/Dockerfile
failure-threshold: warning
- name: Run hadolint on simulator
uses: hadolint/[email protected]
with:
dockerfile: simulator/Dockerfile
failure-threshold: warning
- name: Run hadolint on web
uses: hadolint/[email protected]
with:
dockerfile: web/Dockerfile
failure-threshold: warning