Skip to content

Commit 12c1618

Browse files
feat: drop support for Go 1.21 (#906)
Drop support for Go 1.21 as new version support policy is to support latest two major versions (Go 1.22 and 1.23).
1 parent ada6c44 commit 12c1618

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/renovate.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"constraints": {
3-
"go": "1.21",
3+
"go": "1.22",
44
},
55
"extends": [
66
"config:recommended"

.github/workflows/tests.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,7 @@ jobs:
138138
strategy:
139139
matrix:
140140
goarch: ["", "386"]
141-
go-version: ["1.21", "1.23"]
142-
exclude:
143-
- goarch: "386"
144-
go-version: "1.21"
141+
go-version: ["1.22", "1.23"]
145142
fail-fast: false
146143
permissions:
147144
contents: read

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module cloud.google.com/go/cloudsqlconn
22

3-
go 1.21
3+
go 1.22
44

55
require (
66
github.com/go-sql-driver/mysql v1.8.1

0 commit comments

Comments
 (0)