From 4a504569050940a3ff147c46a1530638dec6f10d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 14:03:21 -0800 Subject: [PATCH] Update the version of goimports used in Dockerfile.dapper (#280) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: Update the hash in Dockerfile.dapper Made with ❤️️ by updatecli --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Dockerfile.dapper | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.dapper b/Dockerfile.dapper index 7b1fef94..04b03364 100644 --- a/Dockerfile.dapper +++ b/Dockerfile.dapper @@ -3,9 +3,9 @@ FROM golang:1.21-alpine3.17 AS dapper ARG ARCH=amd64 RUN apk -U add bash coreutils git gcc musl-dev docker-cli vim less file curl wget ca-certificates -# go imports version gopls/v0.14.2 +# go imports version gopls/v0.15.1 # https://github.com/golang/tools/releases/latest -RUN go install golang.org/x/tools/cmd/goimports@1bf163756eb2d2b83518dfd62a35644c98a9ce9d +RUN go install golang.org/x/tools/cmd/goimports@e335b746546e6d85012916dbf85e830011b58951 RUN rm -rf /go/src /go/pkg RUN if [ "${ARCH}" == "amd64" ]; then \