Skip to content

Commit 948a5b5

Browse files
chore: Bumped minimum go version to 1.15 (#485)
* chore: Bumped minimum go version to 1.15 * Update appengine build tags for 1.17 * PR fixes
1 parent 4d0967d commit 948a5b5

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-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.12, 1.16]
11+
go: [1.15, 1.16, 1.17]
1212

1313
steps:
1414
- name: Set up Go ${{ matrix.go }}

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Set up Go
3232
uses: actions/setup-go@v1
3333
with:
34-
go-version: 1.12
34+
go-version: 1.15
3535

3636
- name: Install golint
3737
run: go get golang.org/x/lint/golint

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Set up Go
4343
uses: actions/setup-go@v1
4444
with:
45-
go-version: 1.12
45+
go-version: 1.15
4646

4747
- name: Install golint
4848
run: go get golang.org/x/lint/golint

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ requests, code review feedback, and also pull requests.
4141

4242
## Supported Go Versions
4343

44-
We support Go v1.12 and higher.
44+
The Admin Go SDK is compatible with at least the three most recent, major Go releases.
45+
We currently support Go v1.15 and higher.
4546
[Continuous integration](https://github.com/firebase/firebase-admin-go/actions) system
46-
tests the code on Go v1.12 through v1.14.
47+
tests the code on Go v1.15 through v1.17.
4748

4849
## Documentation
4950

auth/auth_appengine.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build appengine
12
// +build appengine
23

34
// Copyright 2017 Google Inc. All Rights Reserved.

auth/auth_std.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build !appengine
12
// +build !appengine
23

34
// Copyright 2017 Google Inc. All Rights Reserved.

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.11
3+
go 1.15
44

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

0 commit comments

Comments
 (0)