Skip to content

Commit 5283e6f

Browse files
authored
Merge pull request #579 from joepjoosten/master
Update to Go 1.16 and terraform-plugin-sdk 1.16
2 parents 9884585 + 13d63b9 commit 5283e6f

File tree

6 files changed

+309
-51
lines changed

6 files changed

+309
-51
lines changed

.github/workflows/acceptance-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: Set up Go
1010
uses: actions/[email protected]
1111
with:
12-
go-version: 1.15
12+
go-version: 1.16
1313
id: go
1414

1515
- name: Check out code repository source code
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up Go
3030
uses: actions/[email protected]
3131
with:
32-
go-version: 1.15
32+
go-version: 1.16
3333
id: go
3434

3535
- name: Check out code repository source code

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
name: Set up Go
2929
uses: actions/[email protected]
3030
with:
31-
go-version: 1.15
31+
go-version: 1.16
3232
-
3333
name: Import GPG key
3434
id: import_gpg

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
go: [1.14, 1.15]
10+
go: [1.15, 1.16]
1111
os: [ubuntu-latest, macos-latest, windows-latest]
1212
make_target: [test, vet]
1313

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.15.6
1+
1.16

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module github.com/gitlabhq/terraform-provider-gitlab
22

3-
go 1.15
3+
go 1.16
44

55
require (
66
github.com/hashicorp/go-retryablehttp v0.6.8
7-
github.com/hashicorp/terraform-plugin-sdk v1.15.0
7+
github.com/hashicorp/terraform-plugin-sdk v1.16.0
88
github.com/mitchellh/hashstructure v1.0.0
99
github.com/xanzy/go-gitlab v0.44.0
1010
)

0 commit comments

Comments
 (0)