From 3b2e05855eec782deeec1fe368de11523b2f0dbc Mon Sep 17 00:00:00 2001 From: Victor Nogueira Date: Wed, 5 Aug 2026 09:58:59 -0300 Subject: [PATCH] fix(ci): ignore hadolint DL3066 so CI stops failing on the named user hadolint 2.15.0, pinned by hadolint-action v3.4.0, reports DL3066 on `USER ${USERNAME}`. The action's default failure-threshold is info, so the finding fails the job and skips the formatting and test steps after it. --- .hadolint.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.hadolint.yaml b/.hadolint.yaml index 53eb9a72..9afbb8db 100644 --- a/.hadolint.yaml +++ b/.hadolint.yaml @@ -6,3 +6,5 @@ ignored: - DL3008 - SC2046 - DL3025 + # We run as the named `node` user that the base image already provides, by design. + - DL3066