From c7b76e31a6ae29c6253907aa307962838bf3be65 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 May 2024 10:03:59 -0700 Subject: [PATCH] Update the version of goimports used in Dockerfile.dapper (#285) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: Update the tag in Dockerfile.dapper * 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 04b03364..1e6ab0a8 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.15.1 +# go imports version gopls/v0.15.3 # https://github.com/golang/tools/releases/latest -RUN go install golang.org/x/tools/cmd/goimports@e335b746546e6d85012916dbf85e830011b58951 +RUN go install golang.org/x/tools/cmd/goimports@cd70d50baa6daa949efa12e295e10829f3a7bd46 RUN rm -rf /go/src /go/pkg RUN if [ "${ARCH}" == "amd64" ]; then \