Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all non-major dependencies (main) #594

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.dapper
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.31.0
google.golang.org/grpc => google.golang.org/grpc v1.69.0
)

require (
github.com/minio/minio-go/v7 v7.0.77
github.com/minio/minio-go/v7 v7.0.82
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
Expand Down
2 changes: 1 addition & 1 deletion tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down
Loading