Skip to content

Commit 4f0b192

Browse files
authored
Merge pull request #359 from andyzhangx/fix-go-mod
test: fix go mod issue with go1.16
2 parents 7241cc7 + d58edba commit 4f0b192

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/darwin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Set up Go 1.x
1111
uses: actions/setup-go@v2
1212
with:
13-
go-version: ^1.15
13+
go-version: ^1.16
1414
id: go
1515
- name: Check out code into the Go module directory
1616
uses: actions/checkout@v2

.github/workflows/linux.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Go 1.x
1313
uses: actions/setup-go@v2
1414
with:
15-
go-version: ^1.15
15+
go-version: ^1.16
1616
id: go
1717

1818
- name: Check out code into the Go module directory

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/blob-csi-driver
22

3-
go 1.15
3+
go 1.16
44

55
require (
66
github.com/Azure/azure-sdk-for-go v49.1.0+incompatible

0 commit comments

Comments
 (0)