From 02f76b44cdd361606a30c1b6df5139ea94a50399 Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 20 Jul 2026 17:00:32 +0200 Subject: [PATCH] fix: Resolve shellcheck error (#1313) --- .github/workflows/check.yml | 4 +--- Dockerfile | 4 +++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 3af6e60..1aaf17f 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -23,16 +23,14 @@ jobs: -e SC1091 -e SC2001 -e SC2034 - -e SC2064 -e SC2317 -e SC2153 - -e SC2028 - name: Lint Dockerfile uses: hadolint/hadolint-action@v3.3.0 with: dockerfile: Dockerfile - ignore: DL3008,DL3003,DL3006,DL3013 + ignore: DL3008,DL3003,DL3006 failure-threshold: warning - name: Validate JSON and YML files diff --git a/Dockerfile b/Dockerfile index 9f28505..a1b8069 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,9 @@ FROM debian:trixie-slim ARG TARGETARCH ARG TARGETPLATFORM + ARG VERSION_ARG="0.0" +ARG VERSION_CSTRUCT="4.7" ARG VERSION_PASST="2026_07_16" ARG DEBCONF_NOWARNINGS="yes" @@ -55,7 +57,7 @@ RUN <