Skip to content

Commit

Permalink
feat: match official Go version support policy (#647)
Browse files Browse the repository at this point in the history
Google Cloud Go now follows the official Go support version policy. This
commit updates our test infrastructure to match.
enocom authored Jan 6, 2025
1 parent 49cf2cc commit a84b1d4
Showing 3 changed files with 4 additions and 4 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"
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -115,15 +115,15 @@ jobs:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
goarch: ["", "386"]
go-version: ["1.21", "1.23"]
go-version: ["1.22", "1.23"]
exclude:
- os: macos-latest
goarch: "386"
- os: windows-latest
goarch: "386"
- os: ubuntu-latest
goarch: "386"
go-version: "1.21"
go-version: "1.22"
fail-fast: false
permissions:
contents: 'read'
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/alloydbconn

go 1.21
go 1.22

require (
cloud.google.com/go/alloydb v1.14.0

0 comments on commit a84b1d4

Please sign in to comment.