Skip to content

Commit 06d20ca

Browse files
authored
Merge pull request #630 from rabbitmq/go120
Use golang 1.20
2 parents 1f182d4 + 621a5d7 commit 06d20ca

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build-test-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
tags: [ "v*" ]
1313

1414
env:
15-
GO_VERSION: ~1.19 # Require Go 1.19 and above, but lower than Go 2.0.0
15+
GO_VERSION: ~1.20 # Require Go 1.20 and above, but lower than Go 2.0.0
1616

1717
jobs:
1818
unit_integration_tests:

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [ main ]
66

77
env:
8-
GO_VERSION: '^1.19' # Require Go 1.19 and above, but lower than Go 2.0.0
8+
GO_VERSION: '^1.20' # Require Go 1.20 and above, but lower than Go 2.0.0
99

1010
jobs:
1111

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM --platform=$BUILDPLATFORM golang:1.19 as builder
2+
FROM --platform=$BUILDPLATFORM golang:1.20 as builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/rabbitmq/messaging-topology-operator
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
github.com/cloudflare/cfssl v1.6.4

0 commit comments

Comments
 (0)