diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e773c2..2a6925b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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