Skip to content

Commit

Permalink
Create hadolint.yml (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPokatilov authored May 5, 2024
1 parent c0b9a44 commit 9722405
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/hadolint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Docker Lint

on:
pull_request:
branches:
- "main"
paths-ignore:
- "README.md"
- "README/*.png"
- "README/*.svg"
- "README/*.jpeg"
- "README/*.jpg"
- "README/*.md"
- "LICENSE"
- "readme/**/*"

permissions:
contents: read

jobs:
hadolint:
name: Run hadolint scanning
runs-on: ubuntu-latest
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run hadolint
uses: hadolint/[email protected]
with:
dockerfile: ./dockerfile
format: sarif
output-file: hadolint-results.sarif
no-fail: true

- name: Upload analysis results to GitHub
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: hadolint-results.sarif
wait-for-processing: true

0 comments on commit 9722405

Please sign in to comment.