Skip to content

Commit

Permalink
feat: drop support for Go 1.21 (#906)
Browse files Browse the repository at this point in the history
Drop support for Go 1.21 as new version support policy is to support latest
two major versions (Go 1.22 and 1.23).
  • Loading branch information
jackwotherspoon authored Jan 6, 2025
1 parent ada6c44 commit 12c1618
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"constraints": {
"go": "1.21",
"go": "1.22",
},
"extends": [
"config:recommended"
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,7 @@ jobs:
strategy:
matrix:
goarch: ["", "386"]
go-version: ["1.21", "1.23"]
exclude:
- goarch: "386"
go-version: "1.21"
go-version: ["1.22", "1.23"]
fail-fast: false
permissions:
contents: read
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 cloud.google.com/go/cloudsqlconn

go 1.21
go 1.22

require (
github.com/go-sql-driver/mysql v1.8.1
Expand Down

0 comments on commit 12c1618

Please sign in to comment.