Skip to content

Commit 30d6889

Browse files
authored
Bump expected minimum Go version to 1.18 (hashicorp#173)
* Bump expected minimum Go version to 1.18 (hashicorp#171) * Updating CHANGELOG.md (hashicorp#171) * Amending CHANGELOG.md (hashicorp#171)
1 parent d63fc62 commit 30d6889

File tree

6 files changed

+6
-59
lines changed

6 files changed

+6
-59
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Go
2525
uses: actions/setup-go@v3
2626
with:
27-
go-version: '1.17'
27+
go-version: '1.18'
2828
id: go
2929

3030
- name: Check out code into the Go module directory
@@ -71,7 +71,7 @@ jobs:
7171
- name: Setup Go
7272
uses: actions/setup-go@v2
7373
with:
74-
go-version: '1.17'
74+
go-version: '1.18'
7575
check-latest: true
7676

7777
- name: Check out code

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.17.10
1+
1.18.5

DESIGN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ HTTP URLs and either [HTTP/1.1](https://datatracker.ietf.org/doc/html/rfc2616) o
1717
[SPDY](https://tools.ietf.org/id/draft-ietf-httpbis-http2-00.html),
1818
[QUIC](https://datatracker.ietf.org/doc/html/draft-ietf-quic-transport-34)) are not supported.
1919
* Support usage of either `http` (plaintext) or `https` (secure) requests. The current version of this provider is
20-
built with [Go 1.17](https://go.dev/doc/go1.17) which [supports](https://go.dev/doc/go1.17#minor_library_changes)
20+
built with [Go 1.18](https://go.dev/doc/go1.18) which [supports](https://go.dev/doc/go1.18#tls10)
2121
[TLS/1.0](https://www.ietf.org/rfc/rfc2246.txt) ([deprecated](https://datatracker.ietf.org/doc/rfc8996/)),
2222
[TLS/1.1](https://datatracker.ietf.org/doc/html/rfc4346) ([deprecated](https://datatracker.ietf.org/doc/rfc8996/)),
2323
[TLS/1.2](https://datatracker.ietf.org/doc/html/rfc5246) and

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ version it implements, and Terraform:
3535
## Requirements
3636

3737
* [Terraform](https://www.terraform.io/downloads)
38-
* [Go](https://go.dev/doc/install) (1.17)
38+
* [Go](https://go.dev/doc/install) (1.18)
3939
* [GNU Make](https://www.gnu.org/software/make/)
4040
* [golangci-lint](https://golangci-lint.run/usage/install/#local-installation) (optional)
4141

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/terraform-providers/terraform-provider-http
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/hashicorp/terraform-plugin-docs v0.13.0

0 commit comments

Comments
 (0)