Skip to content

Commit 1c37f7f

Browse files
committed
Update minimal supported go version to 1.21
1 parent 5b97f10 commit 1c37f7f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Go
1414
uses: actions/setup-go@v4
1515
with:
16-
go-version: 1.22.x
16+
go-version: 1.21.x
1717
cache: false
1818

1919
- name: Download dependencies

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ BIN := $(BUILD)/bin
3333
#
3434
# this can _likely_ remain a major version, as fmt output does not tend to change in minor versions,
3535
# which will allow findstring to match any minor version.
36-
EXPECTED_GO_VERSION := go1.19
36+
EXPECTED_GO_VERSION := go1.21
3737
CURRENT_GO_VERSION := $(shell go version)
3838
ifeq (,$(findstring $(EXPECTED_GO_VERSION),$(CURRENT_GO_VERSION)))
3939
# if you are seeing this warning: consider using https://github.com/travis-ci/gimme to pin your version

docker/buildkite/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.19.5
1+
FROM golang:1.21
22

33
RUN mkdir -p /go/src/go.uber.org/cadence
44
WORKDIR /go/src/go.uber.org/cadence

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.uber.org/cadence
22

3-
go 1.19
3+
go 1.21
44

55
require (
66
github.com/apache/thrift v0.16.0

internal/tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.uber.org/cadence/internal/tools
22

3-
go 1.19
3+
go 1.21
44

55
require (
66
github.com/kisielk/errcheck v1.6.3

0 commit comments

Comments
 (0)