From 960d7ea990da718f0fd75574f14bece0b9f72940 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 10 Jun 2026 06:57:44 +0000 Subject: [PATCH 1/2] patch(deps): update docker digests --- cmd/errors/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/errors/Dockerfile b/cmd/errors/Dockerfile index 432cf3d..f45f5d0 100644 --- a/cmd/errors/Dockerfile +++ b/cmd/errors/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM golang:1.26.4-alpine@sha256:162b257ae1156df92d48e2de5abe69f657fc4961f0ea0e5376837a9ffed8160b AS builder +FROM --platform=$BUILDPLATFORM golang:1.26.4-alpine@sha256:f23e8b227fb4493eabe03bede4d5a32d04092da71962f1fb79b5f7d1e6c2a17f AS builder RUN apk add --no-cache -U git curl RUN sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin @@ -16,7 +16,7 @@ RUN --mount=type=cache,target=/go/pkg \ --mount=type=cache,target=/root/.cache/go-build \ task generate build GOOS=${TARGETOS} GOARCH=${TARGETARCH} -FROM alpine:3.24@sha256:660e0827bd401543d81323d4886abbd08fda0fe3ba84337837d0b11a67251283 +FROM alpine:3.24@sha256:a2d49ea686c2adfe3c992e47dc3b5e7fa6e6b5055609400dc2acaeb241c829f4 RUN apk add --no-cache ca-certificates mailcap && \ addgroup -g 1337 errors && \ From b54dc8dfe4cdfbac263ecdfb6796a04fbdada2ce Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Wed, 10 Jun 2026 21:53:14 +0200 Subject: [PATCH 2/2] ci: skip signing binaries for action snapshots --- Taskfile.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Taskfile.yml b/Taskfile.yml index e92eb19..89485f7 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -68,8 +68,11 @@ tasks: build:snapshot: desc: Generate a snapshot with goreleaser + vars: + SKIP_FLAGS: + sh: if [[ "${GITHUB_ACTIONS}" == "true" && "${GITHUB_EVENT_NAME}" == "pull_request" ]]; then echo "--skip=sign"; fi cmds: - - goreleaser release --clean --snapshot + - goreleaser release --clean --snapshot {{ .SKIP_FLAGS }} watch: desc: Run reloading development server