Skip to content

Commit

Permalink
feat: bump to Go 1.19 (#1411)
Browse files Browse the repository at this point in the history
  • Loading branch information
enocom committed Sep 27, 2022
1 parent 05dcdd4 commit 02e008a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.18"
go-version: "1.19"

- name: Checkout base branch
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.18'
go-version: '1.19'
- name: Install goimports
run: go install golang.org/x/tools/cmd/goimports@latest
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: 1.19

- id: 'auth'
name: 'Authenticate to Google Cloud'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/v1-periodic.yaml
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.18
go-version: 1.19

- id: 'auth'
name: 'Authenticate to Google Cloud'
Expand Down
6 changes: 0 additions & 6 deletions README.md
Expand Up @@ -524,12 +524,6 @@ supported for 1 year.
**Unsupported** - Any major version that has been deprecated for >=1 year is
considered publicly unsupported.
### Supported Go Versions
We test and support at least the latest 3 Go versions. Changes in supported Go
versions will be considered a minor change, and will be noted in the release
notes.
### Release cadence
The Cloud SQL Auth proxy aims for a minimum monthly release cadence. If no new
Expand Down
2 changes: 1 addition & 1 deletion go.mod
@@ -1,6 +1,6 @@
module github.com/GoogleCloudPlatform/cloud-sql-proxy/v2

go 1.18
go 1.19

require (
cloud.google.com/go/cloudsqlconn v0.5.2
Expand Down
3 changes: 2 additions & 1 deletion tests/common_test.go
Expand Up @@ -16,7 +16,8 @@
// works as expected when executed as a binary.
//
// Required flags:
// -mysql_conn_name, -db_user, -db_pass
//
// -mysql_conn_name, -db_user, -db_pass
package tests

import (
Expand Down

0 comments on commit 02e008a

Please sign in to comment.