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

Bump Go from 1.20 to 1.21 #1122

Merged
merged 1 commit into from
Sep 7, 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: 1 addition & 1 deletion .github/actions/clean-vpc/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module actions/cleanup-vpc

go 1.20
go 1.21

require (
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/cleanup-pe/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module actions/cleanup-pe

go 1.20
go 1.21

require (
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/cleanup/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module actions/cleanup

go 1.20
go 1.21

require (
github.com/mongodb-forks/digest v1.0.4
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/gen-install-scripts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20
FROM golang:1.21

ENV KUBECTL_VERSION 1.18.12
ENV GO111MODULE on
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/int-test/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20
FROM golang:1.21

ENV GO111MODULE=on

Expand Down
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.20 as builder
FROM golang:1.21 as builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.post-install
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.20 as builder
FROM golang:1.21 as builder

ENV CGO_ENABLED=0
ENV GOOS=linux
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/mongodb/mongodb-atlas-kubernetes

go 1.20
go 1.21

require (
cloud.google.com/go/kms v1.15.1
Expand Down
2 changes: 1 addition & 1 deletion test/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Please push to quay.io/mongodb/mongodb-atlas-kubernetes-operator-test-app:v1

# Build the manager binary
FROM golang:1.20 as builder
FROM golang:1.21 as builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down
2 changes: 1 addition & 1 deletion test/app/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/mongodb/mongodb-atlas-kubernetes/test/app

go 1.20
go 1.21

require (
github.com/gorilla/mux v1.8.0
Expand Down
Loading