Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v6

# TODO: remove this step once this fix to support --start-interval
# has been released: https://github.com/hadolint/language-docker/pull/98
# and the hadolint-action has been updated to use it.
- name: Temp hadolint workaround
run: |
for dockerfile in */Dockerfile; do
sed 's/--start-interval=1s //g' "$dockerfile" > "${dockerfile}.hadolint"
done

- name: Run Hadolint
uses: hadolint/hadolint-action@v3.3.0
with:
dockerfile: "*/Dockerfile.hadolint"
dockerfile: "*/Dockerfile"
recursive: true
failure-threshold: warning

Expand Down