From 4f3a68f4e60e0cb757e0ce205bebc06ce68b3fc1 Mon Sep 17 00:00:00 2001 From: Alexej Kubarev Date: Tue, 20 Aug 2024 20:29:19 +0200 Subject: [PATCH 1/3] build(ci): Adding curl to Dockerfile as it's missing in newer versions --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 85d490e..e7ba270 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM golang:1.22-alpine # Build dependencies -RUN apk --no-cache update -RUN apk --no-cache add alpine-sdk +RUN apk --no-cache update && \ + apk --no-cache add alpine-sdk curl WORKDIR /src From 8a1dfca540df0f601a68e435a559ba3dbc6f6141 Mon Sep 17 00:00:00 2001 From: Alexej Kubarev Date: Tue, 20 Aug 2024 20:29:40 +0200 Subject: [PATCH 2/3] build(lint): New linter version bump --- hack/linter.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/linter.sh b/hack/linter.sh index 39fb56e..735a6cc 100644 --- a/hack/linter.sh +++ b/hack/linter.sh @@ -6,7 +6,7 @@ GREEN="\033[32m" YELLOW="\033[33m" NORMAL="\033[39m" -LINTER_VERSION=1.58.1 +LINTER_VERSION=1.60.1 LINTER_BINDIR=$(go env GOPATH)/bin LINTER_NAME=golangci-lint From 551b97a97faee17a19e67e9500ace594316ed835 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 18:22:07 +0000 Subject: [PATCH 3/3] build(deps): bump golang from 1.22-alpine to 1.23-alpine Bumps golang from 1.22-alpine to 1.23-alpine. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e7ba270..e8be738 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22-alpine +FROM golang:1.23-alpine # Build dependencies RUN apk --no-cache update && \