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 misc modules #85

Merged
merged 2 commits into from
Oct 26, 2023
Merged
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: 2 additions & 0 deletions .nancy-ignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ CVE-2022-32149
sonatype-2022-6522
CVE-2020-8561
CVE-2023-32731
CVE-2023-3978
CVE-2023-39325
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.16 as builder
FROM golang:1.21 as builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down
11 changes: 6 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ module github.com/giantswarm/upgrade-schedule-operator
go 1.16

require (
cloud.google.com/go/compute/metadata v0.2.3 // indirect
github.com/blang/semver v3.5.1+incompatible
github.com/giantswarm/k8smetadata v0.10.1
github.com/go-logr/logr v0.4.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.11.0
github.com/stretchr/testify v1.7.0
golang.org/x/text v0.3.6
github.com/prometheus/client_golang v1.17.0
github.com/stretchr/testify v1.8.4
golang.org/x/text v0.13.0
k8s.io/api v0.22.2
k8s.io/apimachinery v0.22.2
k8s.io/client-go v0.22.2
Expand All @@ -18,7 +19,7 @@ require (
)

replace (
github.com/coreos/etcd => github.com/coreos/etcd v3.3.24+incompatible
github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt v3.2.1+incompatible
github.com/coreos/etcd => github.com/coreos/etcd v3.3.27+incompatible
github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/gorilla/websocket v1.4.0 => github.com/gorilla/websocket v1.4.2
)
Loading
Loading