From a9514fe6ac879942220340e4e8ce1d19fe76779c Mon Sep 17 00:00:00 2001 From: Guillaume Sainthillier Date: Mon, 13 Apr 2026 15:32:35 +0200 Subject: [PATCH 1/2] Remove hadolint temporary workaround step Removed temporary workaround for hadolint once fix is available. --- .github/workflows/ci.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e773c2..4925601 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,15 +15,6 @@ 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: From 7056e8fab0edbe6ba189ebd237697ab497e93193 Mon Sep 17 00:00:00 2001 From: Guillaume Sainthillier Date: Mon, 13 Apr 2026 15:35:52 +0200 Subject: [PATCH 2/2] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4925601..2a6925b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - name: Run Hadolint uses: hadolint/hadolint-action@v3.3.0 with: - dockerfile: "*/Dockerfile.hadolint" + dockerfile: "*/Dockerfile" recursive: true failure-threshold: warning