From 0931ae097296863e5f188b8c6a0c5f9b95f79793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20R=C3=B6hrich?= Date: Mon, 22 Sep 2025 13:33:25 +0200 Subject: [PATCH 1/3] Release v3.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Moritz Röhrich --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cbb24e2..93a3909 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/hadolint/hadolint:v2.13.1-debian +FROM ghcr.io/hadolint/hadolint:v2.14.0-debian COPY LICENSE README.md problem-matcher.json / COPY hadolint.sh /usr/local/bin/hadolint.sh From 2bfd2b95f895100db2ca84c3054a8ce50f1fc611 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20R=C3=B6hrich?= Date: Mon, 22 Sep 2025 13:41:56 +0200 Subject: [PATCH 2/3] Don't trigger release workflow on Tag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tags are automatically generated and applied by the release action Signed-off-by: Moritz Röhrich --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2485573..3a5f201 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,6 @@ name: "CI" on: push: - tags: - - "v*" - branches: - master From 2332a7b74a6de0dda2e2221d575162eba76ba5e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20R=C3=B6hrich?= Date: Mon, 22 Sep 2025 13:43:49 +0200 Subject: [PATCH 3/3] feat: trigger release workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Release action only triggers if there is a commit with a keyword in the title since the last release tag was made... Signed-off-by: Moritz Röhrich