Skip to content

Commit 4093df9

Browse files
chore: Upgrade Go version support (#647)
1 parent 05e575d commit 4093df9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
go: ['1.20', '1.21', '1.22']
11+
go: ['1.21', '1.22', '1.23']
1212

1313
steps:
1414
- name: Check out code

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
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.20'
39+
go-version: '1.21'
4040

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

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
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.20'
50+
go-version: '1.21'
5151

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

README.md

Lines changed: 2 additions & 2 deletions
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.20 and higher.
48+
We currently support Go v1.21 and higher.
4949
[Continuous integration](https://github.com/firebase/firebase-admin-go/actions) system
50-
tests the code on Go v1.20 through v1.22.
50+
tests the code on Go v1.21 through v1.23.
5151

5252
## Documentation
5353

go.mod

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

3-
go 1.20
3+
go 1.21
44

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

0 commit comments

Comments
 (0)