Skip to content

Commit 40bb509

Browse files
authored
bump to go1.23 (#606)
1 parent 0ccf069 commit 40bb509

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.github/workflows/api_diff_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go 1.x
1717
uses: actions/setup-go@v2
1818
with:
19-
go-version: "1.22"
19+
go-version: "1.23"
2020
id: go
2121

2222
- name: Check out code into the Go module directory

.github/workflows/codegen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest]
16-
go-version: ["1.22"]
16+
go-version: ["1.23"]
1717
env:
1818
JAVA_TOOL_OPTIONS: "-Xmx2g"
1919
steps:

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
16-
go-version: ["1.22", "1.23", "1.24"]
16+
go-version: ["1.23", "1.24", "1.25"]
1717
steps:
1818
- uses: actions/checkout@v2
1919

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[Smithy](https://smithy.io/) code generators for Go and the accompanying smithy-go runtime.
66

7-
The smithy-go runtime requires a minimum version of Go 1.22.
7+
The smithy-go runtime requires a minimum version of Go 1.23.
88

99
**WARNING: All interfaces are subject to change.**
1010

@@ -80,7 +80,7 @@ example created from `smithy init`:
8080
"service": "example.weather#Weather",
8181
"module": "github.com/example/weather",
8282
"generateGoMod": true,
83-
"goDirective": "1.22"
83+
"goDirective": "1.23"
8484
}
8585
}
8686
}

aws-http-auth/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/aws/smithy-go/aws-http-auth
22

3-
go 1.21
3+
go 1.23

codegen/smithy-go-codegen-test/smithy-build.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
"module": "github.com/aws/smithy-go/internal/tests/service/weather",
77
"moduleVersion": "0.0.1",
88
"generateGoMod": true,
9-
"goDirective": "1.22"
9+
"goDirective": "1.23"
1010
},
1111
"go-server-codegen": {
1212
"service": "example.weather#Weather",
1313
"module": "github.com/aws/smithy-go/internal/tests/server/weather",
1414
"moduleVersion": "0.0.1",
1515
"generateGoMod": true,
16-
"goDirective": "1.22"
16+
"goDirective": "1.23"
1717
}
1818
}
1919
}

codegen/smithy-go-codegen/src/main/java/software/amazon/smithy/go/codegen/GoModuleInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
public final class GoModuleInfo {
2929

30-
public static final String DEFAULT_GO_DIRECTIVE = "1.22";
30+
public static final String DEFAULT_GO_DIRECTIVE = "1.23";
3131

3232
private List<SymbolDependency> dependencies;
3333

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/aws/smithy-go
22

3-
go 1.22
3+
go 1.23

metrics/smithyotelmetrics/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/aws/smithy-go/metrics/smithyotelmetrics
22

3-
go 1.22
3+
go 1.23
44

55
require (
66
github.com/aws/smithy-go v1.23.0

tracing/smithyoteltracing/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/aws/smithy-go/tracing/smithyoteltracing
22

3-
go 1.22
3+
go 1.23
44

55
require (
66
github.com/aws/smithy-go v1.23.0

0 commit comments

Comments
 (0)