Skip to content

Commit 9e96b5a

Browse files
chore: Bump Supported Go versions to 1.20, 1.21, 1.22 (#607)
* chore: Bump go version in CIs * fix the version matrix * revert depencies upgrade * Update Go version in go.mod * trigger staging
1 parent 98efade commit 9e96b5a

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
go: [1.17, 1.18, 1.19]
11+
go: ['1.20', '1.21', '1.22']
1212

1313
steps:
1414
- name: Check out code

.github/workflows/nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Go
3737
uses: actions/setup-go@v5
3838
with:
39-
go-version: 1.17
39+
go-version: '1.20'
4040

4141
- name: Install golint
4242
run: go install golang.org/x/lint/golint@latest

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Set up Go
4848
uses: actions/setup-go@v5
4949
with:
50-
go-version: 1.17
50+
go-version: '1.20'
5151

5252
- name: Install golint
5353
run: go install golang.org/x/lint/golint@latest

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ requests, code review feedback, and also pull requests.
4545
## Supported Go Versions
4646

4747
The Admin Go SDK is compatible with at least the three most recent, major Go releases.
48-
We currently support Go v1.17 and higher.
48+
We currently support Go v1.20 and higher.
4949
[Continuous integration](https://github.com/firebase/firebase-admin-go/actions) system
50-
tests the code on Go v1.17 through v1.19.
50+
tests the code on Go v1.20 through v1.22.
5151

5252
## Documentation
5353

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module firebase.google.com/go/v4
22

3-
go 1.17
3+
go 1.20
44

55
require (
66
cloud.google.com/go/firestore v1.9.0

0 commit comments

Comments
 (0)