From fb11913e8bbe9a69ca8297198756be3055f4f7dc Mon Sep 17 00:00:00 2001 From: Eric Bode Date: Tue, 23 Apr 2024 10:17:24 +0200 Subject: [PATCH] chore(git): update dep for action Signed-off-by: Eric Bode --- .github/actions/shfmt/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/shfmt/Dockerfile b/.github/actions/shfmt/Dockerfile index 7cc889e..7e968a7 100644 --- a/.github/actions/shfmt/Dockerfile +++ b/.github/actions/shfmt/Dockerfile @@ -4,8 +4,8 @@ RUN apt update && \ apt upgrade -y && \ apt install -y --no-install-recommends wget ca-certificates && \ cd /usr/local/bin && \ - wget https://github.com/mvdan/sh/releases/download/v3.5.1/shfmt_v3.5.1_linux_amd64 && \ - mv shfmt_v3.5.1_linux_amd64 shfmt && \ + wget https://github.com/mvdan/sh/releases/download/v3.8.0/shfmt_v3.8.0_linux_amd64 && \ + mv shfmt_v3.8.0_linux_amd64 shfmt && \ chmod +x shfmt COPY entrypoint.sh /entrypoint.sh