Skip to content

Commit

Permalink
Bump Go from 1.20 to 1.21 (#1122)
Browse files Browse the repository at this point in the history
Go 1.21.1 is released with the usual bugfixes for 1.21.
  • Loading branch information
roothorp authored Sep 7, 2023
1 parent 3a988ee commit 5e7e580
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
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

0 comments on commit 5e7e580

Please sign in to comment.