audit logging #4
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |