From 9b81313a9e2758da5c32cb4aef9b3b96c2489e7e Mon Sep 17 00:00:00 2001 From: PoAn Yang Date: Mon, 13 Jan 2025 17:01:47 +0800 Subject: [PATCH] feat: bump go to v1.23 Signed-off-by: PoAn Yang --- Dockerfile.dapper | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.dapper b/Dockerfile.dapper index 7bf79119..9cd4181b 100644 --- a/Dockerfile.dapper +++ b/Dockerfile.dapper @@ -1,4 +1,4 @@ -FROM registry.suse.com/bci/golang:1.22 +FROM registry.suse.com/bci/golang:1.23 ARG DAPPER_HOST_ARCH ENV ARCH $DAPPER_HOST_ARCH @@ -8,7 +8,7 @@ RUN zypper -n rm container-suseconnect && \ ## install golangci-lint RUN if [ "${ARCH}" = "amd64" ]; then \ - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.57.1; \ + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.63.4; \ fi ENV DAPPER_ENV REPO TAG DRONE_TAG CROSS diff --git a/go.mod b/go.mod index 65874602..43aeb237 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/harvester/docker-machine-driver-harvester -go 1.22.5 +go 1.23.4 replace ( github.com/docker/docker => github.com/moby/moby v1.4.2-0.20170731201646-1009e6a40b29 // oras dep requires a replace is set