diff --git a/Dockerfile.dapper b/Dockerfile.dapper index 7a145b81..4d762264 100644 --- a/Dockerfile.dapper +++ b/Dockerfile.dapper @@ -10,7 +10,7 @@ RUN zypper -n in git-core curl tar gzip docker wget awk hostname && \ rm -rf /tmp/* /var/tmp/* /usr/share/doc/packages/* RUN if [ "${ARCH}" == "amd64" ]; then \ - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.61.0; \ + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.62.2; \ fi RUN curl -sL https://get.helm.sh/helm-v3.9.0-linux-${ARCH}.tar.gz | tar xvzf - -C /usr/local/bin --strip-components=1 RUN if [ "${ARCH}" != "s390x" ]; then \ diff --git a/go.mod b/go.mod index d57b20fc..2adf4a1a 100644 --- a/go.mod +++ b/go.mod @@ -4,18 +4,18 @@ go 1.23.0 replace ( github.com/imdario/mergo => dario.cat/mergo v0.3.16 - golang.org/x/crypto => golang.org/x/crypto v0.27.0 - google.golang.org/grpc => google.golang.org/grpc v1.67.1 + golang.org/x/crypto => golang.org/x/crypto v0.30.0 + google.golang.org/grpc => google.golang.org/grpc v1.68.1 ) require ( - github.com/minio/minio-go/v7 v7.0.77 + github.com/minio/minio-go/v7 v7.0.81 github.com/rancher/lasso v0.0.0-20240923125127-ae858d002589 github.com/rancher/wrangler/v3 v3.0.0 github.com/robfig/cron/v3 v3.0.1 github.com/sirupsen/logrus v1.9.3 - github.com/stretchr/testify v1.9.0 - golang.org/x/sync v0.8.0 + github.com/stretchr/testify v1.10.0 + golang.org/x/sync v0.10.0 k8s.io/api v0.31.1 k8s.io/apiextensions-apiserver v0.31.1 k8s.io/apimachinery v0.31.1 diff --git a/tests/go.mod b/tests/go.mod index 2c3f904d..4bee817c 100644 --- a/tests/go.mod +++ b/tests/go.mod @@ -4,7 +4,7 @@ go 1.23.0 require ( github.com/rancher/hull v0.0.0-20230424152137-627ef5347afd - github.com/stretchr/testify v1.9.0 + github.com/stretchr/testify v1.10.0 k8s.io/api v0.30.3 k8s.io/apimachinery v0.30.3 )